-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.11 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1.11 KB
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
from setuptools import setup, find_packages
# Read requirements from requirements.txt
with open('requirements.txt') as f:
requirements = [line.strip() for line in f.readlines() if line.strip()]
setup(
name="rag_model_service",
version="0.1.0",
description="A RAG (Retrieval-Augmented Generation) service for document search and generation",
author="Lablup",
packages=find_packages(),
include_package_data=True,
python_requires=">=3.9",
install_requires=requirements + [
"python-dotenv",
"gradio",
],
entry_points={
"console_scripts": [
"rag-vectorize=vectordb_manager.cli_vectorizer:app",
"rag-chat=app.rag_chatbot:main",
"rag-web=app.gradio_app:main",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)