Initial upload of auto-changelog-generator
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-01-29 12:00:20 +00:00
parent a537f73fd8
commit 72f6b0a345

60
pyproject.toml Normal file
View File

@@ -0,0 +1,60 @@
[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