forked from whatamithinking/japplr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 975 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 975 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python
from setuptools import setup, find_packages
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
setup(
name='japplr',
version='1.0.0',
description='A module to apply to jobs on multiple job boards.',
long_description=long_description,
packages=find_packages(),
url='https://github.com/ConnorSMaynes/japplr',
license='MIT License',
author='ConnorSMaynes',
author_email='connormaynes@gmail.com',
maintainer='ConnorSMaynes',
maintainer_email='connormaynes@gmail.com',
platforms=["all"],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries'
]
)