-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1.22 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
# setup.py
from setuptools import setup, find_packages
with open("readme.md", "r") as f:
long_description = f.read()
setup(
name="langgraph_lib",
version="0.1.0",
description="A toolkit to serve LangGraph agents using FastAPI.",
author="Vishvdeep Dasadiya",
author_email="vishvdeep.dasadiya.vd@gmail.com",
url="https://github.com/aiwithvd/langgraph_lib",
packages=find_packages(where="src"),
long_description=long_description,
long_description_content_type="text/markdown",
package_dir={"": "src"},
license="MIT", # Changed 'libraries' to 'license'
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
],
install_requires=[
"fastapi>=0.95.2",
"uvicorn[standard]>=0.22.0",
"httpx>=0.24.1",
"pydantic>=1.10.7",
"langchain_core>=0.0.5",
"langgraph>=0.1.0",
"langsmith>=0.0.4",
],
python_requires=">=3.7",
keywords="langgraph fastapi agent toolkit ai",
project_urls={
"Bug Reports": "https://github.com/aiwithvd/langgraph_lib/issues",
"Source": "https://github.com/aiwithvd/langgraph_lib",
},
)