summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: 2f29292ea3e59f09de3cb3e17fe3f183a999c182 (plain)
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
85
[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:

[aliases]
release = sdist bdist_wheel

[egg_info]
tag_build = dev

[bdist_wheel]
universal = true

[options.extras_require]
dev =
    flake8

test =
    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

typing =
    mypy>=0.991

alldeps =
    %(dev)s
    %(eventlet)s
    %(gevent)s
    %(sasl)s
    %(docs)s
    %(typing)s