-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
47 lines (46 loc) · 1.4 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
47
from setuptools import find_packages, setup
setup(
name="chainlite",
version="0.3.2",
author="Sina Semnani",
author_email="[email protected]",
description="A Python package that uses LangChain and LiteLLM to call large language model APIs easily",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/stanford-oval/chainlite",
packages=find_packages(),
install_requires=[
"tqdm",
"langchain==0.3.4",
"langchain-community==0.3.3",
"langchain-core==0.3.12",
"langchain-text-splitters==0.3.0",
"langgraph==0.2.39",
"langsmith==0.1.137",
"langgraph-checkpoint==2.0.1",
"langgraph-sdk==0.1.33",
"litellm==1.51.2",
"numpydoc", # needed for function calling with LiteLLM
"grandalf", # to visualize LangGraph graphs
"pydantic>=2.5",
"redis[hiredis]",
],
extras_require={
"dev": [
"invoke",
"pytest",
"pytest-asyncio",
"setuptools",
"wheel",
"twine",
"isort",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
license="Apache License 2.0",
)