-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (44 loc) · 1.34 KB
/
Copy pathsetup.py
File metadata and controls
46 lines (44 loc) · 1.34 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
36
37
38
39
40
41
42
43
44
45
46
import os
from setuptools import setup, find_packages
# Read the contents of your README file
with open(os.path.join(os.path.dirname(__file__), "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="clirag",
version="0.1.0",
author="Elite Systems Engineer",
description="CLI Retrieval-Augmented Generation (CLIRAG) - 100% Offline Edge AI Analysis Engine",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yourusername/clirag",
packages=find_packages(),
install_requires=[
"typer>=0.9.0",
"rich>=13.0.0",
"duckdb>=0.10.0",
"kuzu>=0.0.11",
"pymupdf>=1.23.0",
"reportlab>=4.0.0", # Added for stress testing script
"llama-cpp-python>=0.2.0",
"huggingface-hub",
"sentence-transformers",
"gliner",
"httpx",
"pandas>=2.0.0",
"tabulate>=0.9.0",
"psutil>=5.9.0"
],
entry_points={
"console_scripts": [
"clirag=clirag.main:app",
"CLIRAG=clirag.main:app",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
],
python_requires=">=3.8",
)