Files
git-diff-explainer-cli/pyproject.toml
7000pctAUTO de13ca00bd
Some checks failed
CI / test (3.10) (push) Has been cancelled
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / build (push) Has been cancelled
fix: correct CI workflow configuration for git-diff-explainer-cli
2026-02-02 14:08:01 +00:00

35 lines
839 B
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "git-diff-explainer-cli"
version = "0.1.0"
description = "A CLI tool that uses LLMs to explain git diffs in natural language"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"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 = [
"click>=8.0",
"requests>=2.31",
"pygments>=2.15",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"ruff>=0.1.0",
"build>=1.0",
]
[project.scripts]
gdiffer = "gdiffer.cli:main"