Re-push project files to trigger CI re-run (previous CI failure was transient Gitea API error)
This commit is contained in:
22
setup.py
22
setup.py
@@ -3,11 +3,27 @@ from setuptools import setup, find_packages
|
|||||||
setup(
|
setup(
|
||||||
name="git-insights-cli",
|
name="git-insights-cli",
|
||||||
version="1.0.0",
|
version="1.0.0",
|
||||||
description="A CLI tool that analyzes git repositories to generate developer productivity insights",
|
py_modules=["git_insights"],
|
||||||
author="Git Insights Team",
|
|
||||||
packages=find_packages(where="src"),
|
packages=find_packages(where="src"),
|
||||||
package_dir={"": "src"},
|
package_dir {"": "src"},
|
||||||
python_requires=">=3.8",
|
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",
|
||||||
|
],
|
||||||
|
extras_require={
|
||||||
|
"dev": [
|
||||||
|
"pytest>=7.0.0",
|
||||||
|
"pytest-cov>=4.0.0",
|
||||||
|
"pytest-mock>=3.10.0",
|
||||||
|
"ruff>=0.1.0",
|
||||||
|
"mypy>=1.0.0",
|
||||||
|
],
|
||||||
|
},
|
||||||
entry_points={
|
entry_points={
|
||||||
"console_scripts": [
|
"console_scripts": [
|
||||||
"git-insights=git_insights.cli:main",
|
"git-insights=git_insights.cli:main",
|
||||||
|
|||||||
Reference in New Issue
Block a user