Files
git-insights-cli/setup.py
7000pctAUTO a52590f2d7
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled
fix: resolve CI/CD issues - dependency and linting fixes
2026-01-30 20:42:25 +00:00

26 lines
676 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.0.0",
"rich>=13.0.0",
"gitpython>=3.1.0",
"dataclasses-json>=0.6.0",
"PyYAML>=6.0",
"jinja2>=3.1.0",
],
entry_points={
"console_scripts": [
"git-insights=git_insights.cli:main",
],
},
include_package_data=True,
)