-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (39 loc) · 1.19 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
[tool.poetry]
name = "retry-extended"
version = "0.2.3"
description = "Retry API compatible extended library"
authors = ["Strollby Developers <[email protected]>"]
readme = "README.md"
license = "Apache-2.0"
homepage = "https://github.com/strollby/retry-extended"
repository = "https://github.com/strollby/retry-extended"
documentation = "https://github.com/strollby/retry-extended"
keywords = [
"retry",
"retry-extended",
"python-retry",
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"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"
]
packages = [{include = "retry"}]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/strollby/retry-extended/issues"
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py311']
[tool.isort]
profile = "black"