26 lines
676 B
Python
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,
|
|
)
|