-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (44 loc) · 1.45 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
from setuptools import setup, find_packages
setup(
name="pica-langchain",
version="1.2.5",
packages=find_packages(),
install_requires=[
"langchain==0.3.20",
"langchain_openai==0.3.8",
"pydantic==2.10.6",
"requests==2.32.3",
"requests-toolbelt>=1.0.0",
],
extras_require={
"dev": [
"pytest==8.3.5",
"black==25.1.0",
"isort==6.0.1",
"mypy==1.15.0",
],
},
python_requires=">=3.8",
author="Pica",
author_email="support@picaos.com",
description="Pica LangChain SDK",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://www.picaos.com/",
project_urls={
"Documentation": "https://docs.picaos.com/sdk/langchain",
"Source": "https://github.com/picahq/pica-langchain",
"Releases": "https://github.com/picahq/pica-langchain/releases",
"Issue Tracker": "https://github.com/picahq/pica-langchain/issues",
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)