18 lines
487 B
Python
18 lines
487 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",
|
|
entry_points={
|
|
"console_scripts": [
|
|
"git-insights=git_insights.cli:main",
|
|
],
|
|
},
|
|
include_package_data=True,
|
|
)
|