feat: Initializes project with basic configuration and structure

- Creates `cliff.toml` for changelog generation.
- Adds `pyproject.toml` for project metadata and dependencies.
- Sets up initial file structure with `.gitkeep`.
This commit is contained in:
2025-07-12 21:26:08 +02:00
parent 9c07262c23
commit 6b51705a9e
3 changed files with 151 additions and 0 deletions

25
pyproject.toml Normal file
View File

@@ -0,0 +1,25 @@
[tool.poetry]
name = "patchman"
version = "0.1.0"
description = ""
authors = ["Max P. <Mail@MPassarello.de>"]
readme = "README.md"
packages = [{ include = "patchman", from = "src" }]
[tool.poetry.dependencies]
python = "<4.0.0,>=3.12"
typer = { extras = ["all"], version = "^0.15.3" }
pyyaml = "^6.0.2"
pydantic = "^2.11.4"
zstandard = "^0.23.0"
textual = "^4.0.0"
[tool.poetry.scripts]
patchman = "patchman.__main__:main"
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
twine = "^6.1.0"