27 lines
561 B
TOML
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*"]
|