forked from codefuse-ai/CodeFuse-muAgent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (47 loc) · 1.44 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
41
42
43
44
45
46
47
48
49
import setuptools
# with open("README.md", "r", encoding="utf-8") as fh:
# long_description = fh.read()
setuptools.setup(
name="codefuse-muagent",
version="0.1.0",
author="shanshi",
author_email="[email protected]",
description="A multi-agent framework that facilitates the rapid construction of collaborative teams of agents.",
# long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/codefuse-ai/CodeFuse-muAgent",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
install_requires=[
"openai==1.34.0",
"langchain==0.2.3",
"langchain_community==0.2.4",
"langchain_openai==0.1.8",
"langchain_huggingface==0.0.3",
"sentence_transformers",
"loguru",
"fastapi",
"pandas",
"Pyarrow",
"jieba",
"psutil",
"faiss-cpu",
"notebook",
"docker",
"sseclient",
"Levenshtein",
"urllib3==1.26.6",
#
"chromadb==0.4.17",
"javalang==0.13.0",
"nebula3-python==3.8.2",
"SQLAlchemy==2.0.19",
"redis==5.0.1",
"pydantic<=1.10.14",
"aliyun-log-python-sdk==0.9.0"
],
)