forked from python-zk/kazoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
86 lines (72 loc) · 1.91 KB
/
setup.cfg
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
76
77
78
79
80
81
82
83
84
[metadata]
name = kazoo
version = attr: kazoo.version.__version__
author = Kazoo team
author_email = python-zk@googlegroups.com
url = https://kazoo.readthedocs.io
description = "Higher Level Zookeeper Client"
long_description = file: README.md, CHANGES.md
long_description_content_type = text/markdown
license = Apache 2.0
license_files =
LICENSE
platform = any
keywords = zookeeper, lock, leader, configuration
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Communications
Topic :: System :: Distributed Computing
Topic :: System :: Networking
project_urls =
Documentation = https://kazoo.readthedocs.io
Changelog = https://github.com/python-zk/kazoo/releases
Source = https://github.com/python-zk/kazoo
Bug Tracker = https://github.com/python-zk/kazoo/issues
[options]
zip_safe = false
include_package_data = true
packages = find:
install_requires =
six
selectors2>=2.0.2 ; python_version < "3.4.0"
[aliases]
release = sdist bdist_wheel
[egg_info]
tag_build = dev
[bdist_wheel]
universal = true
[options.extras_require]
dev =
flake8
test =
mock
objgraph
pytest
pytest-cov
gevent>=1.2 ; implementation_name!='pypy'
eventlet>=0.17.1 ; implementation_name!='pypy'
eventlet =
eventlet>=0.17.1
gevent =
gevent>=1.2
sasl =
pure_sasl>=0.5.1
docs =
Sphinx>=1.2.2
alldeps =
%(dev)s
%(eventlet)s
%(gevent)s
%(sasl)s
%(docs)s