-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 1.03 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
from setuptools import setup, find_packages
# Read the contents of your README file
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="FlowDesign",
version="0.1.0",
description=long_description,
packages=find_packages(), # Automatically find packages in your project
install_requires=[
"torch>=1.9.0", # PyTorch for deep learning
"torchvision>=0.10.0", # torchvision for image processing utilities
"langchain>=0.3.7",
"langchain-chroma>=0.1.4",
"langchain-community>=0.3.7",
"langchain-core>=0.3.18",
"langchain-experimental>=0.3.2",
"langchain-google-genai>=2.0.1",
"langchain-ollama>=0.2.3",
"langchain-google-vertexai>=2.0.3",
"langchain-huggingface>=0.1.0",
"langchain-openai>=0.2.2",
"langchain-text-splitters>=0.3.0",
"langchainhub>=0.1.21",
"faiss-cpu>=1.9.0.post1",
],
include_package_data=True, # Include data files specified in package_data
)