Files
git-insights-cli/setup.py
7000pctAUTO dba831ced2
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled
CI / release (push) Has been cancelled
Initial upload: git-insights-cli with CI/CD workflow
2026-01-30 20:35:13 +00:00

26 lines
670 B
Python

from setuptools import setup, find_packages
setup(
name="git-insights-cli",
version="1.0.0",
description="A CLI tool that analyzes git repositories to generate developer productivity insights",
author="Git Insights Team",
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.8",
install_requires=[
"click>=8.1.7",
"rich>=13.7.0",
"gitpython>=3.1.40",
"dataclasses-json>=0.6.4",
"pyyaml>=6.0.1",
"jinja2>=3.1.3",
],
entry_points={
"console_scripts": [
"git-insights=src.cli:main",
],
},
include_package_data=True,
)