modif/pyproject.toml

24 lines
440 B
TOML
Raw Permalink Normal View History

[project]
name = "modif"
version = "0.0.0"
description = "Tooling to generate nice changelogs from commit histories and validate commit formats."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"click>=8.1.7",
2024-11-12 03:53:38 +00:00
"pydantic>=2.9.2",
"pyyaml>=6.0.2",
]
[project.scripts]
modif = "modif.main:main"
[tool.setuptools]
packages = ["modif"]
[tool.uv]
dev-dependencies = [
"pre-commit>=4.0.1",
"ruff>=0.7.3",
]