[project] create pyproject.toml, readme, version file

`pdm build` even builds this package; no idea if it would be
installable/usable though
This commit is contained in:
bronsen 2025-03-14 12:37:30 +01:00
parent a3a71f318d
commit 474df0342c
3 changed files with 91 additions and 0 deletions

View file

@ -1,3 +1,16 @@
[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" },
]
[tool.pytest.ini_options]
pythonpath = "."
python_files = [
@ -10,3 +23,11 @@ addopts = [
"--capture=sys",
]
[build-system]
requires = [
"pdm-backend",
]
build-backend = "pdm.backend"
[tool.pdm.version]
source = "file"
path = "VERSION.py"