-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 669 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name="github-notifications-copilot",
version="1.0.0",
description="AI-powered GitHub notification triage using Claude",
py_modules=["notification_copilot", "github_api_client", "llm_classifier", "actions_executor"],
python_requires=">=3.11",
install_requires=[
"requests>=2.31.0",
"pyyaml>=6.0.1",
"python-dotenv>=1.0.0",
],
extras_require={
"llm": ["anthropic>=0.25.0"],
"dev": ["pytest>=7.4.0", "pytest-cov>=4.1.0"],
},
entry_points={
"console_scripts": [
"gh-copilot=notification_copilot:main",
]
},
)