This repository has been archived by the owner on Feb 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (29 loc) · 1.46 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
from setuptools import setup
setup(name='passport',
version='0.1.1',
description="Light weight configuration management using Consul",
long_description=open('README.rst').read(),
maintainer="Gavin M. Roy",
maintainer_email="gavinmroy@gmail.com",
url="https://github.com/gmr/passport",
install_requires=['consulate', 'tornado'],
license=open('LICENSE').read(),
package_data={'': ['LICENSE', 'README.rst']},
py_modules=['passport'],
entry_points=dict(console_scripts=['passport=passport:main']),
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Database',
'Topic :: Software Development :: Libraries'],
zip_safe=True)