Files
patchman/pyproject.toml
Max P. 1ff3091ef1 chore(deps): add GitPython and pytest dependencies
- Add GitPython to manage Git repositories programmatically
- Add pytest for running unit tests and configuring test paths
2025-07-23 13:39:11 +02:00

28 lines
612 B
TOML

[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"
gitpython = "^3.1.44"
[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"
pytest = "^8.4.1"