-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 856 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (27 loc) · 856 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
[tool.poetry]
name = "power_decos"
version = "0.1.5"
description = "A python package full of different decorator utils"
authors = ["MrCode200 <navidyaghmaei@gmail.com>"]
readme = "README.md"
homepage = "https://mrcode200.github.io/power_decos/"
repository = "https://github.com/MrCode200/power_decos"
license = "MIT"
keywords = ["decorators", "log", "retry", "get_time", "cache"]
[tool.poetry.dependencies]
python = "^3.11"
platformdirs = "^3.2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
[tool.poetry.group.docs.dependencies]
setuptools = "^75.1.0"
sphinx = "^8.0.2"
sphinx-rtd-theme = "^2.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "8.3.2"
addopts = "-v --cov=power_decos --cov-report=term-missing"
testpaths = ["tests"]