Skip to content

Commit 778ee50

Browse files
committed
update config files
1 parent 37ee5a1 commit 778ee50

File tree

4 files changed

+2900
-2388
lines changed

4 files changed

+2900
-2388
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "RAGLight is a lightweight and modular Python library for implemen
55
authors = [
66
{name = "Bessouat40",email = "roman.bessouat@orange.fr"}
77
]
8-
license = {text = "Designed for simplicity and flexibility, RAGLight provides modular components to easily integrate various LLMs, embeddings, and vector stores, making it an ideal tool for building context-aware AI solutions. ✨MIT"}
8+
license = { file = "LICENSE" }
99
readme = "README.md"
1010
requires-python = ">=3.11"
1111
dependencies = [

requirements.txt

Lines changed: 0 additions & 15 deletions
This file was deleted.

setup.py

Lines changed: 2 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,3 @@
1-
from setuptools import setup, find_packages
1+
from setuptools import setup
22

3-
setup(
4-
name="raglight",
5-
version="5",
6-
description="A lightweight and modular framework for Retrieval-Augmented Generation (RAG)",
7-
long_description=open("README.md", "r", encoding="utf-8").read(),
8-
long_description_content_type="text/markdown",
9-
author="Labess40",
10-
author_email="",
11-
url="https://github.com/Bessouat40/RAGLight",
12-
packages=find_packages(where="src"),
13-
package_dir={"": "src"},
14-
include_package_data=True,
15-
install_requires=[
16-
"langchain",
17-
"chromadb",
18-
"python-dotenv",
19-
"langgraph",
20-
"langchain_ollama",
21-
"langchain_chroma",
22-
"langchain_huggingface",
23-
"typing",
24-
"mistralai",
25-
"smolagents",
26-
"langchain_community",
27-
"typing_extensions",
28-
"langchain_text_splitters",
29-
"langchain_core",
30-
"ollama",
31-
"typer[all]",
32-
],
33-
entry_points={
34-
"console_scripts": [
35-
"raglight=raglight.cli.main:app",
36-
],
37-
},
38-
classifiers=[
39-
"Programming Language :: Python :: 3",
40-
"License :: OSI Approved :: MIT License",
41-
"Operating System :: OS Independent",
42-
],
43-
python_requires=">=3.11",
44-
)
3+
setup()

0 commit comments

Comments
 (0)