-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
38 lines (37 loc) · 881 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
38
from setuptools import setup, find_packages
setup(
name="langchain-teddynote",
version="0.3.42",
description="LangChain Helper Library",
author="Teddy Lee",
author_email="[email protected]",
url="https://github.com/teddylee777/langchain-teddynote",
install_requires=[
"langchain",
"langgraph",
"kiwipiepy",
"rank_bm25",
"pinecone-client[grpc]",
"pinecone-text",
"olefile",
"pdf2image",
"openai",
"anthropic",
"deepl",
"feedparser",
"tavily-python",
"pandas",
],
packages=find_packages(exclude=[]),
keywords=[
"langchain",
"langgraph",
"teddynote",
],
python_requires=">=3.10",
package_data={},
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
],
)