Spaces:
Running
Running
AgentVerse
commited on
Commit
•
2782841
1
Parent(s):
eb1b05b
bump version to 0.1.8
Browse files
setup.py
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import setuptools
|
2 |
+
from setuptools.command.develop import develop
|
3 |
+
import subprocess
|
4 |
+
|
5 |
+
with open("requirements.txt", "r") as f:
|
6 |
+
requirements = f.read().splitlines()
|
7 |
+
|
8 |
+
with open("README.md", "r", encoding='utf8') as fh:
|
9 |
+
long_description = fh.read()
|
10 |
+
|
11 |
+
setuptools.setup(
|
12 |
+
name="agentverse",
|
13 |
+
version="0.1.5",
|
14 |
+
author="OpenBMB",
|
15 |
+
author_email="chenweize1998@gmail.com",
|
16 |
+
description="A versatile framework that streamlines the process of creating custom multi-agent environments for large language models (LLMs).",
|
17 |
+
long_description=long_description,
|
18 |
+
long_description_content_type="text/markdown",
|
19 |
+
url="https://github.com/OpenBMB/AgentVerse",
|
20 |
+
packages=setuptools.find_packages(),
|
21 |
+
classifiers=[
|
22 |
+
"Programming Language :: Python :: 3",
|
23 |
+
'License :: OSI Approved :: Apache Software License',
|
24 |
+
"Operating System :: OS Independent",
|
25 |
+
],
|
26 |
+
python_requires=">=3.9",
|
27 |
+
# install_requires=[
|
28 |
+
# "PyYAML",
|
29 |
+
# "fastapi",
|
30 |
+
# "uvicorn",
|
31 |
+
# "py3langid",
|
32 |
+
# "iso-639",
|
33 |
+
# "openai",
|
34 |
+
# "opencv-python",
|
35 |
+
# "gradio",
|
36 |
+
# "httpx[socks]",
|
37 |
+
# "astunparse",
|
38 |
+
# "langchain",
|
39 |
+
# ],
|
40 |
+
install_requires=requirements,
|
41 |
+
include_package_data = True,
|
42 |
+
entry_points={
|
43 |
+
"console_scripts": [
|
44 |
+
"agentverse-benchmark = agentverse_command.benchmark:cli_main",
|
45 |
+
"agentverse-simulation = agentverse_command.main_simulation_cli:cli_main",
|
46 |
+
"agentverse-simulation-gui = agentverse_command.main_simulation_gui:cli_main",
|
47 |
+
"agentverse-tasksolving = agentverse_command.main_tasksolving_cli:cli_main",
|
48 |
+
],
|
49 |
+
},
|
50 |
+
)
|