From 72f6b0a345e5a9cd7804310dc0d706a494db49c4 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 29 Jan 2026 12:00:20 +0000 Subject: [PATCH] Initial upload of auto-changelog-generator --- pyproject.toml | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..6e3c244 --- /dev/null +++ b/pyproject.toml @@ -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