fix: resolve CI build failures
Some checks failed
CI / test (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-01-31 04:00:12 +00:00
parent 63c4c939f1
commit 2fd8d94a76

19
setup.py Normal file
View File

@@ -0,0 +1,19 @@
from setuptools import setup, find_packages
setup(
name="git-commit-ai",
version="0.1.0",
packages=find_packages(),
install_requires=[
"click>=8.0",
"ollama>=0.1",
"gitpython>=3.1",
"pyyaml>=6.0",
"requests>=2.31",
],
entry_points={
"console_scripts": [
"git-commit-ai=git_commit_ai.cli.cli:main",
],
},
)