2024-11-09 20:03:41 +00:00
|
|
|
[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",
|
2024-11-09 20:03:41 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
modif = "modif.main:main"
|
|
|
|
|
|
|
|
[tool.setuptools]
|
|
|
|
packages = ["modif"]
|
|
|
|
|
|
|
|
[tool.uv]
|
|
|
|
dev-dependencies = [
|
|
|
|
"pre-commit>=4.0.1",
|
|
|
|
"ruff>=0.7.3",
|
|
|
|
]
|