forked from gmr/consulate
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
75 lines (67 loc) · 2.29 KB
/
setup.py
File metadata and controls
75 lines (67 loc) · 2.29 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import setuptools
__version__ = "1.1.0"
__author__ = "Gavin M. Roy"
__email__ = "gavinr@aweber.com"
__maintainer__ = "Alberto Vara"
__maintainer_email__ = "a.vara.1986@gmail.com"
install_requires = [
"requests>=2.24.0",
]
install_extra_requires = ["requests-unixsocket>=0.1.4,<=1.0.0"]
install_tests_requires = [
"requests-mock>=1.8.0",
"coverage>=5.3",
"pytest>=6.1.0",
"pytest-cov>=2.10.1",
"pytest-docker>=0.10.1",
"pylint>=2.6.0",
"flake8>=3.8.2",
"tox>=3.20.0",
"bandit>=1.6.2",
"safety==1.9.0",
"mypy>=0.782",
"pre-commit>=2.8.1",
"black>=20.8b1",
"isort>=5.6.4",
"httmock>=1.4.0",
]
setuptools.setup(
name="py-ms-consulate",
version=__version__,
author=__author__,
author_email=__email__,
description="A Client library and command line application for the Consul",
maintainer=__maintainer__,
maintainer_email=__maintainer_email__,
url="https://consulate.readthedocs.org",
install_requires=install_requires,
extras_require={"unixsocket": install_extra_requires, "tests": install_tests_requires},
tests_require=install_requires + install_tests_requires,
setup_requires=[
"pytest-runner>=5.2",
],
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,
)