forked from dropbox/pynsot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·35 lines (30 loc) · 1 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
34
35
#!/usr/bin/env python
from setuptools import find_packages, setup
execfile('pynsot/version.py')
with open('requirements.txt') as requirements:
required = requirements.read().splitlines()
kwargs = {
'name': 'pynsot',
'version': str(__version__), # noqa
'packages': find_packages(exclude=['tests']),
'description': 'Python interface for Network Source of Truth (nsot)',
'author': 'Jathan McCollum',
'maintainer': 'Jathan McCollum',
'author_email': '[email protected]',
'maintainer_email': '[email protected]',
'license': 'Apache',
'install_requires': required,
'url': 'https://github.com/dropbox/pynsot',
'entry_points': """
[console_scripts]
nsot=pynsot.app:app
snot=pynsot.app:app
""",
'classifiers': [
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
]
}
setup(**kwargs)