-
-
Notifications
You must be signed in to change notification settings - Fork 281
/
setup.cfg
47 lines (42 loc) · 1.17 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
[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 :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Utilities
[options]
install_requires =
python_requires = >=3.8
packages = find:
[options.packages.find]
include = tenacity*
exclude = tests
[options.package_data]
tenacity = py.typed
[options.extras_require]
doc =
reno
sphinx
test =
pytest
tornado>=4.5
typeguard
[tool:pytest]
filterwarnings =
# Show any DeprecationWarnings once
once::DeprecationWarning