-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (35 loc) · 1.04 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
from setuptools import setup, find_packages
setup(
name="raglight",
version="1.2.3",
description="A lightweight and modular framework for Retrieval-Augmented Generation (RAG)",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="Labess40",
author_email="",
url="https://github.com/Bessouat40/RAGLight",
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
install_requires=[
"langchain",
"chromadb",
"python-dotenv",
"langgraph",
"langchain_ollama",
"langchain_chroma",
"langchain_huggingface",
"typing",
"langchain_community",
"typing_extensions",
"langchain_text_splitters",
"langchain_core",
"ollama",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.11",
)