-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 690 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup, find_packages
setup(
name="devagent",
version="0.1.0",
description="Autonomous software engineering agent powered by Cerebras",
python_requires=">=3.11",
packages=find_packages(),
install_requires=[
"cerebras-cloud-sdk>=1.0.0",
"langgraph>=0.2.0",
"langchain-core>=0.3.0",
"langchain-openai>=0.2.0",
"PyGithub>=2.1.1",
"GitPython>=3.1.40",
"typer>=0.12.0",
"rich>=13.7.0",
"python-dotenv>=1.0.0",
"pydantic>=2.5.0",
"tenacity>=8.2.3",
],
entry_points={
"console_scripts": [
"devagent=main:app_cli",
],
},
)