forked from gmr/consulate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.61 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
37
from setuptools import setup
import sys
install_requires = ['requests']
if sys.version_info < (2, 7, 0):
install_requires.append('argparse')
setup(name='consulate',
version='0.3.0',
description="A Client library for the Consul",
maintainer="Gavin M. Roy",
maintainer_email="gavinr@aweber.com",
url="https://consulate.readthedocs.org",
install_requires=install_requires,
license=open('LICENSE').read(),
extras_require={'tornado': 'tornado'},
package_data={'': ['LICENSE', 'README.rst']},
packages=['consulate'],
entry_points=dict(console_scripts=['consulate=consulate.cli: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.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: System :: Systems Administration',
'Topic :: System :: Clustering',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries'],
zip_safe=True)