All checks were successful
Auto Changelog & Release / detect-version-change (push) Successful in 5s
Auto Changelog & Release / release (push) Has been skipped
Auto Changelog & Release / changelog-only (push) Successful in 11s
Build and Publish nightly package / build-and-publish (push) Successful in 21s
- Bump charset-normalizer from 3.4.1 to 3.4.2 - Bump cryptography from 44.0.2 to 44.0.3 - Adjust Click dependency constraint to "<8.2.0" These updates enhance compatibility and address potential issues with dependency versions.
27 lines
576 B
TOML
27 lines
576 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" }
|
|
click = "<8.2.0"
|
|
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"
|