forked from PagerDuty/pagerduty-api-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1.11 KB
/
setup.py
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
31
32
33
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('pypd/version.py') as version_file:
exec(compile(version_file.read(), version_file.name, 'exec'))
options = {
'name': 'pypd',
'version': __version__,
'packages': find_packages(),
'scripts': [],
'description': 'A python client for PagerDuty API',
'author': 'JD Cumpson',
'author_email': '[email protected]',
'maintainer': 'JD Cumpson',
'maintainer_email': '[email protected]',
'license': 'MIT',
'url': 'https://github.com/PagerDuty/pagerduty-api-python-client',
'download_url': 'https://github.com/PagerDuty/pagerduty-api-python-client/archive/master.tar.gz',
'classifiers': [
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
'install_requires': ['requests', 'six'],
'tests_require': [],
'cmdclass': {}
}
setup(**options)