-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (39 loc) · 1.01 KB
/
setup.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
from setuptools import setup
setup(
name='cura',
version='1.0',
packages=['cura'],
install_requires=[
'docker',
'datasets',
'langchain',
'langchain-core',
'langchain-community',
'langgraph',
'langsmith',
'langchain-openai==0.1.20',
'python-dotenv',
'gitpython',
'flask',
'psycopg[binary]>=3.1.19',
'markupsafe==2.0.1',
'directory_tree',
'pylint',
'chromadb',
# 'pysqlite3',
'git+https://github.com/princeton-nlp/SWE-bench.git#egg=swebench',
'langchain-huggingface',
'langchain-text-splitters',
'langchain-chroma',
'pysqlite3-binary'
],
entry_points={
'console_scripts': [
'cura=cura.cli:main'
]
},
author='Mark Chen, Cheng Pong Huang',
author_email='[email protected]',
description='A package for CURA - Code Understanding and Reasoning Agent',
url='https://github.com/mindify-ai/cura',
)