- Add GitPython to manage Git repositories programmatically - Add pytest for running unit tests and configuring test paths
28 lines
612 B
TOML
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"
|