-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 1.02 KB
/
setup.py
File metadata and controls
28 lines (27 loc) · 1.02 KB
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
from setuptools import setup, find_packages
setup(
name="langchain-desearch", # Replace with your desired package name
version="1.0.6", # Initial version
author="Desearch", # Replace with your name
author_email="your-email@example.com", # Replace with your email
description="LangChain integration with Desearch API for search and data-fetching tools.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/Desearch-ai/langchain-desearch", # Replace with your GitHub repo URL
packages=find_packages(),
include_package_data=True,
install_requires=[
"langchain-core==0.3.51",
"langchain==0.3.23",
"pydantic==2.11.3",
"python-dotenv==1.1.0",
"desearch-py==1.0.0",
"pytest==8.3.5",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
)