-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (39 loc) · 1.31 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
[tool.poetry]
name = "dij"
version = "0.0.3"
description = "💉 dij » dependency dijection library"
authors = ["Lucas Colombo <[email protected]>"]
homepage = "https://pest.lucode.ar"
documentation = "https://pest.lucode.ar/docs"
repository = "https://github.com/lucodear/dij"
license = "MIT"
readme = "README.md"
keywords = ["dependency", "injection", "di"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
]
packages = [{ include = "dij" }]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
requests = "^2.32.3"
typing-extensions = "^4.12.2"
[tool.poetry.group.dev.dependencies]
ruff = "^0.6.9"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.3"
nox-poetry = "^1.0.3"
pytest-asyncio = "^0.24.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"