37 lines
740 B
TOML
37 lines
740 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "logimage-generator"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"Pillow>=10.0",
|
|
"opencv-python-headless>=4.8",
|
|
"reportlab>=4.0",
|
|
"httpx>=0.27",
|
|
"python-dotenv>=1.0",
|
|
"numpy>=1.26",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=8.0", "pytest-cov>=5.0", "ruff>=0.4", "mypy>=1.10"]
|
|
|
|
[project.scripts]
|
|
logimage = "logimage.cli.main:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
markers = ["integration: tests requiring network or external resources"]
|
|
|
|
[tool.ruff]
|
|
line-length = 88
|
|
|
|
[tool.mypy]
|
|
mypy_path = "src"
|
|
strict = true
|