61 lines
1.4 KiB
TOML
61 lines
1.4 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "changeloggen"
|
|
version = "0.1.0"
|
|
description = "A Python CLI tool that automatically generates changelogs from git diffs using local AI models"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
requires-python = ">=3.10"
|
|
authors = [
|
|
{name = "Auto Changelog Generator", email = "dev@example.com"}
|
|
]
|
|
keywords = ["changelog", "git", "cli", "ai", "conventional-commits"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
]
|
|
dependencies = [
|
|
"gitpython>=3.1.40",
|
|
"typer>=0.9.0",
|
|
"rich>=13.7.0",
|
|
"pydantic>=2.5.0",
|
|
"requests>=2.31.0",
|
|
"pyyaml>=6.0.1",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.4.0",
|
|
"pytest-cov>=4.1.0",
|
|
"ruff>=0.1.0",
|
|
"mypy>=1.7.0",
|
|
"types-pyyaml>=6.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
changeloggen = "changeloggen.main:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.ruff]
|
|
target-version = "py310"
|
|
line-length = 100
|
|
select = ["E", "F", "W", "I", "B", "C4", "UP"]
|
|
ignore = ["E501"]
|
|
|
|
[tool.mypy]
|
|
python_version = "3.10"
|
|
strict = true
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
disallow_untyped_defs = true
|