Files
git-insights-cli/pyproject.toml
7000pctAUTO 265b70e3b0
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled
Add CLI module with commands
2026-02-01 08:27:00 +00:00

27 lines
561 B
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "git-insights-cli"
version = "1.0.0"
description = "A CLI tool that analyzes git repositories"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
dependencies = [
"click>=8.0.0",
"rich>=13.0.0",
"gitpython>=3.1.0",
"dataclasses-json>=0.6.0",
"PyYAML>=6.0",
"jinja2>=3.1.0",
]
[project.scripts]
git-insights = "git_insights.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["git_insights*"]