-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
88 lines (81 loc) · 2.09 KB
/
pyproject.toml
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
86
87
88
[build-system]
# Minimum requirements for the build system to execute.
# PEP 508 specifications for PEP 518.
# Banned setuptools versions have well-known issues
requires = [
"setuptools >= 21.0.0,!=24.0.0,!=34.0.0,!=34.0.1,!=34.0.2,!=34.0.3,!=34.1.0,!=34.1.1,!=34.2.0,!=34.3.0,!=34.3.1,!=34.3.2,!=36.2.0", # PSF/ZPL
"setuptools_scm[toml]>=3.4",
]
build-backend="setuptools.build_meta"
[project]
name = "retryhttp"
version = "1.3.1"
description = "Retry potentially transient HTTP errors in Python."
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.8"
authors = [
]
maintainers = [
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"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 :: Internet :: WWW/HTTP",
"Topic :: Utilities",
]
dependencies = [
"httpx",
"pydantic",
"requests",
"types-requests",
"tenacity"
]
[project.optional-dependencies]
httpx = [
"httpx",
"tenacity",
]
requests = [
"requests",
"types-requests",
"tenacity",
]
dev = [
"pytest",
"pytest-xdist",
"respx",
"ruff",
"nox",
"types-requests",
]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
]
[project.urls]
Documentation = "https://retryhttp.readthedocs.io"
Homepage = "https://github.com/austind/retryhttp"
Repository = "https://github.com/austind/retryhttp.git"
Issues = "https://github.com/austind/retryhttp/issues"
[tool.setuptools]
packages = ["retryhttp"]
[tool.ruff]
line-length = 88
indent-width = 4
target-version = "py38"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = ["E501"]