23 lines
482 B
TOML
23 lines
482 B
TOML
[build-system]
|
|
requires = ["setuptools>=75"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "timerr"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"Django>=5.2,<5.3",
|
|
"reportlab>=4.2,<5",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=8,<10", "pytest-django>=4.9,<5"]
|
|
|
|
[tool.pytest.ini_options]
|
|
DJANGO_SETTINGS_MODULE = "config.settings"
|
|
python_files = ["test_*.py", "tests.py"]
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["apps*", "config*"]
|