forked from gmr/consulate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 1.41 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
import setuptools
setuptools.setup(
name="consulate",
version="1.1.1dev0",
description="A Client library and command line application for the Consul",
url="https://consulate.readthedocs.org",
install_requires=["requests>=2.0.0,<3.0.0"],
extras_require={"unixsocket": ["requests-unixsocket>=0.1.4,<=1.0.0"]},
license="BSD",
package_data={"": ["LICENSE", "README.rst"]},
packages=["consulate", "consulate.api", "consulate.models"],
entry_points=dict(console_scripts=["consulate=consulate.cli:main"]),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"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,
)