forked from jd/tenacity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
46 lines (41 loc) · 1.21 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
[metadata]
name = tenacity
license = Apache 2.0
url = https://github.com/jd/tenacity
summary = Retry code until it succeeds
long_description = Tenacity is a general-purpose retrying library to simplify the task of adding retry behavior to just about anything.
author = Julien Danjou
author-email = [email protected]
home-page = https://github.com/jd/tenacity
classifier =
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Utilities
[options]
install_requires =
six>=1.9.0
futures>=3.0;python_version=='2.7'
monotonic>=0.6;python_version=='2.7'
typing>=3.7.4.1;python_version=='2.7'
packages = tenacity
[options.package_data]
tenacity = py.typed
[options.extras_require]
doc =
reno
sphinx
tornado>=4.5
[wheel]
universal = 1
[tool:pytest]
filterwarnings =
# Show any DeprecationWarnings once
once::DeprecationWarning