From dba831ced2dceac49efdb129622618325f94fd4b Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 20:35:13 +0000 Subject: [PATCH] Initial upload: git-insights-cli with CI/CD workflow --- setup.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..c58833f --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +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, +)