forked from Abeautifulsnow/PyRetry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 900 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 900 Bytes
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
[tool.poetry]
name = "py-retry"
version = "0.0.5"
description = "A nice tool for retrying tasks when they are failed."
authors = ["Abeautifulsnow"]
license = "MIT License"
packages = [
{ include = "retry", from = "src" },
]
readme = "README.md"
repository = "https://github.com/Abeautifulsnow/PyRetry"
keywords = ["pyretry", "retry", "python", "python3"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
mock = "^4.0.3"
pytest = "^8.0.2"
black = "^24.4.0"
pyupgrade = "^3.15.2"
pre-commit = "^3.7.0"
isort = "^5.13.2"
flake8 = "^7.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"