-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 1.08 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
from setuptools import setup, find_packages
setup(
name="myscalekb-agent-base",
version="0.1.6",
author="jiachengs",
author_email="[email protected]",
description="Base classes for MyScaleKB Agent APP",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/myscale/myscalekb-agent-base",
packages=find_packages(include=["myscalekb_agent_base", "myscalekb_agent_base.*"]),
package_data={},
python_requires=">=3.12",
install_requires=[
# app required
"pydantic~=2.8.2",
# langchain family
"langchain==0.3.2",
"langchain-openai==0.2.2",
"langchain-community==0.3.1",
"langgraph==0.2.35",
# others
"nanoid~=2.0.0",
"clickhouse-connect~=0.7.18",
"json5~=0.9.25",
"json_repair~=0.30.0",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
],
)