-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
46 lines (39 loc) · 1.41 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
import setuptools
import os
import os
requires = """
"""
def get_requirements():
ret = [x for x in requires.split("\n") if len(x) > 0]
print("requirements:", ret)
return ret
# path = os.path.dirname(os.path.abspath(__file__))
# requires = get_requirements(path)
with open("README.md", "r") as f:
setuptools.setup(
name="agentverse",
version="0.0.1",
description="rovides a flexible framework that simplifies the process of building custom multi-agent environments for large language models (LLMs).",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="",
author_email="",
license="Apache",
url="",
keywords=["Agent", "WestWord"],
python_requires="~=3.8",
install_requires=get_requirements(),
package_dir={"agentverse": "agentverse"},
package_data={},
include_package_data=True,
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)