modif/pyproject.toml

22 lines
396 B
TOML
Raw 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",
]
[project.scripts]
modif = "modif.main:main"
[tool.setuptools]
packages = ["modif"]
[tool.uv]
dev-dependencies = [
"pre-commit>=4.0.1",
"ruff>=0.7.3",
]