forked from gomate-community/TrustRAG
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 769 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (20 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
__version__ = "0.15.0"
# 读取 requirements.txt 文件中的内容
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name="trustrag",
version=__version__,
author="gomate-community",
packages=['trustrag'],
package_dir={'trustrag': 'trustrag'},
package_data={'trustrag': ['*.*', 'applications/*', 'modules/document/*']},
install_requires=required,
author_email="yanqiang@ict.ac.cn",
description="RAG Framework within Reliable input,Trusted output",
long_description=open('README.md','r',encoding="utf-8").read(),
long_description_content_type='text/markdown',
url="https://github.com/gomate-community/TrustRAG",
python_requires='>=3.11.0',
)