Files
repoCat/pyproject.toml
Max P. bf727a8541
Some checks are pending
Build and Publish / build-and-publish (push) Waiting to run
feat(poetry): add twine to development dependencies
Signed-off-by: Max P. <Mail@MPassarello.de>
2025-04-30 12:04:57 +02:00

26 lines
559 B
TOML

[tool.poetry]
name = "repocat"
version = "0.1.0"
description = ""
authors = ["Max P. <Mail@MPassarello.de>"]
readme = "README.md"
packages = [{ include = "repocat", from = "src" }]
[tool.poetry.dependencies]
python = ">=3.12"
rich = "^14.0.0"
typer = { extras = ["all"], version = "^0.15.3" }
pyyaml = "^6.0.2"
pydantic = "^2.11.4"
zstandard = "^0.23.0"
[tool.poetry.scripts]
repocat = "repocat.__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"