generated from brenozd/python-template
34 lines
541 B
TOML
34 lines
541 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "docai"
|
|
version = "0.0.0"
|
|
dynamic = ["dependencies"]
|
|
|
|
[tool.hatch.dependencies]
|
|
path = "requirements.txt"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/docai"]
|
|
|
|
[tool.hatch.build]
|
|
skip-excluded-dirs = true
|
|
|
|
[tool.hatch.envs.dev]
|
|
python = "3.13"
|
|
dependencies = [
|
|
"coverage[toml]",
|
|
"pytest",
|
|
"pytest-cov",
|
|
"pytest-mock",
|
|
"mypy"
|
|
]
|
|
|
|
[tool.mypy]
|
|
strict = true
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
disallow_untyped_defs = true
|