-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (62 loc) · 1.97 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (62 loc) · 1.97 KB
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
[build-system]
requires = ["setuptools",]
build-backend = "setuptools.build_meta"
[project]
name = "retrying"
version = "1.4.3-dev"
description = "Retrying"
authors = [
{name = "Alex Kuang"},
{name = "Anthony McClosky"},
{name = "Cyrus Durgin"},
{name = "Daniel Nephin"},
{name = "Dougal Matthews"},
{name = "Greg Roodt"},
{name = "Haïkel Guémar"},
{name = "Hugo Klepsch"},
{name = "J Derek Wilson"},
{name = "James Page"},
{name = "Jason Dunkelberger"},
{name = "Job Evers"},
{name = "Jonathan Herriott"},
{name = "Josh Marshall"},
{name = "Joshua Harlow"},
{name = "Justin Turner Arthur"},
{name = "Maxym Shalenyi"},
{name = "Monty Taylor"},
{name = "Pierre-Yves Chibon"},
{name = "Ray Holder"},
{name = "Rees Dooley"},
{name = "Saul Shanabrook"},
{name = "Simon Dollé"},
{name = "Simeon Visser"},
{name = "Thomas Goirand"},
]
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet",
"Topic :: Utilities",
]
keywords = ["decorator", "decorators", "retry", "retrying", "exception", "exponential", "backoff"]
[project.urls]
Homepage = "https://github.com/groodt/retrying"
Repository = "https://github.com/groodt/retrying"
[tool.setuptools]
py-modules = ["retrying"]