Files
python-template/pyproject.toml

27 lines
446 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "python-template"
version = "0.0.0"
dynamic = ["dependencies"]
[tool.hatch.dependencies]
path = "requirements.txt"
[tool.hatch.build.targets.wheel]
packages = ["src/python_template"]
[tool.hatch.build]
skip-excluded-dirs = true
[tool.hatch.envs.dev]
python = "3.13"
dependencies = [
"coverage[toml]",
"pytest",
"pytest-cov",
"pytest-mock",
]