-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
executable file
·36 lines (31 loc) · 1.05 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
36
#!/usr/bin/env python
from __future__ import absolute_import
from setuptools import find_packages, setup
exec(open('pynsot/version.py').read())
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)