forked from lion-agi/lionagi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 957 Bytes
/
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
import setuptools
import os
here = os.path.abspath(os.path.dirname(__file__))
# Get the code version
version = {}
with open(os.path.join(here, "lionagi/version.py")) as fp:
exec(fp.read(), version)
__version__ = version["__version__"]
install_requires = [
"aiohttp",
"python-dotenv",
"tiktoken",
"pydantic",
"aiocache",
"pandas",
]
setuptools.setup(
name="lionagi",
version=__version__,
author="HaiyangLi",
author_email="ocean@lionagi.ai",
description="Towards automated general intelligence.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=setuptools.find_packages(include=["lionagi*"]),
install_requires=install_requires,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
)