-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
37 lines (29 loc) · 934 Bytes
/
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
[project]
name = "function-cooldowns"
version = "2.1.0"
description = "A simplistic decorator based approach to rate limiting function calls."
authors = [{name = "Skelmis", email="[email protected]"}]
license = "UNLICENSE"
readme = "readme.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry]
packages = [{include = "cooldowns"}]
requires-poetry = ">=2.0"
[project.urls]
"Issue tracker" = "https://github.com/Skelmis/Function-Cooldowns/issues"
Documentation = "https://function-cooldowns.rtfd.io/"
Homepage = "https://github.com/Skelmis/Function-Cooldowns"
[tool.poetry.dependencies]
python = "^3.10"
attrs = "^25.1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
freezegun = "^1.5.1"
pytest-asyncio = "^0.25.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"