forked from RUC-NLPIR/FlashRAG
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 785 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 785 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
with open("requirements.txt") as fp:
requirements = fp.read().splitlines()
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="flashrag",
version="0.0.1",
packages=find_packages(),
url="https://github.com/ignorejjj/FlashRAG",
license="MIT License",
author="Jiajie Jin, Yutao Zhu, Chenghao Zhang, Xinyu Yang",
author_email="jinjiajie@ruc.edu.cn",
description="A library for efficient Retrieval-Augmented Generation research",
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
package_data={"flashrag": ["/config/basic_config.yaml"]},
install_requires=requirements,
python_requires=">=3.8",
)