-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (30 loc) · 828 Bytes
/
pyproject.toml
File metadata and controls
37 lines (30 loc) · 828 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
[project]
name = "duckdi"
version = "0.1.12"
description = "🦆 A minimal dependency injection library for Python"
authors = [{ name = "Phe Pato", email = "pheprogrammer@gmail.com" }]
readme = "README.md"
license = "MIT"
[project.urls]
homepage = "https://pypi.org/project/duckdi/"
repository = "https://github.com/PheFreire/DuckDI"
[tool.poetry]
packages = [{include = "duckdi", from = "src"}]
[tool.poetry.dependencies]
python = ">=3.10"
toml = ">=0.10.2,<0.11.0"
[tool.poetry.group.dev.dependencies]
black = "^25.1.0"
isort = "^6.0.1"
flake8 = "^7.2.0"
bandit = "^1.8.3"
mypy = "^1.15.0"
pytest = "^8.3.5"
[tool.pytest.ini_options]
pythonpath = ["tests"]
log_cli = true
[tool.poetry.scripts]
duckdi = "duckdi.cli:main"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"