2025-03-14 12:37:30 +01:00
|
|
|
[project]
|
|
|
|
name = "teilchensammler"
|
|
|
|
description = "Build a list of parts in a pile to help sorting and categorization"
|
|
|
|
readme = "README.md"
|
|
|
|
dynamic = [
|
|
|
|
"version",
|
|
|
|
]
|
|
|
|
requires-python = ">= 3.12"
|
|
|
|
# dependencies are in folder .dependencies/*.in
|
|
|
|
authors = [
|
|
|
|
{ name = "bronsen", email = "kontakt+teilchensammler@nrrd.de" },
|
|
|
|
]
|
|
|
|
|
2025-03-13 17:14:26 +01:00
|
|
|
[tool.pytest.ini_options]
|
2025-03-15 21:54:11 +01:00
|
|
|
pythonpath = ["."]
|
2025-03-13 17:14:26 +01:00
|
|
|
python_files = [
|
|
|
|
"test_*.py",
|
2025-03-14 14:15:39 +01:00
|
|
|
"tests.py",
|
|
|
|
"config/test.py",
|
2025-03-13 17:14:26 +01:00
|
|
|
]
|
2025-03-13 17:44:32 +01:00
|
|
|
addopts = [
|
|
|
|
"--create-db",
|
|
|
|
"--no-migrations",
|
|
|
|
"--capture=sys",
|
|
|
|
]
|
2025-03-13 17:14:26 +01:00
|
|
|
|
2025-03-14 12:37:30 +01:00
|
|
|
[build-system]
|
2025-03-14 14:19:40 +01:00
|
|
|
requires = ["pdm-backend"]
|
2025-03-14 12:37:30 +01:00
|
|
|
build-backend = "pdm.backend"
|
2025-03-14 14:19:40 +01:00
|
|
|
|
2025-03-14 12:37:30 +01:00
|
|
|
[tool.pdm.version]
|
|
|
|
source = "file"
|
2025-03-14 14:19:40 +01:00
|
|
|
path = "./VERSION.py"
|