Spaces:
Build error
Build error
File size: 1,677 Bytes
2782841 |
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 50 51 |
import setuptools
from setuptools.command.develop import develop
import subprocess
with open("requirements.txt", "r") as f:
requirements = f.read().splitlines()
with open("README.md", "r", encoding='utf8') as fh:
long_description = fh.read()
setuptools.setup(
name="agentverse",
version="0.1.5",
author="OpenBMB",
author_email="[email protected]",
description="A versatile framework that streamlines the process of creating custom multi-agent environments for large language models (LLMs).",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/OpenBMB/AgentVerse",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
'License :: OSI Approved :: Apache Software License',
"Operating System :: OS Independent",
],
python_requires=">=3.9",
# install_requires=[
# "PyYAML",
# "fastapi",
# "uvicorn",
# "py3langid",
# "iso-639",
# "openai",
# "opencv-python",
# "gradio",
# "httpx[socks]",
# "astunparse",
# "langchain",
# ],
install_requires=requirements,
include_package_data = True,
entry_points={
"console_scripts": [
"agentverse-benchmark = agentverse_command.benchmark:cli_main",
"agentverse-simulation = agentverse_command.main_simulation_cli:cli_main",
"agentverse-simulation-gui = agentverse_command.main_simulation_gui:cli_main",
"agentverse-tasksolving = agentverse_command.main_tasksolving_cli:cli_main",
],
},
)
|