File: setup.cfg

package info (click to toggle)
python-tenacity 8.4.2%2Breally8.4.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 680 kB
  • sloc: python: 3,003; makefile: 11
file content (51 lines) | stat: -rw-r--r-- 1,154 bytes parent folder | download
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
[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 = julien@danjou.info
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 = 
	once::DeprecationWarning

[egg_info]
tag_build = 
tag_date = 0