-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 1017 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (30 loc) · 1017 Bytes
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
from setuptools import setup, find_packages
setup(
name='raglab2',
version='0.2.4',
packages=find_packages(),
license='MIT',
install_requires=[
'openai',
'requests',
'numpy',
'pyecharts',
'matplotlib',
'networkx',
'pandas',
'loguru',
'regex',
'tqdm'
],
author='targetpilot',
author_email='ai-research@targetpilot.ai',
description='RAG-LAB is an open-source lighter, faster and cheaper RAG toolkit supported by Target Pilot, designed to transform the latest RAG concepts into stable and practical engineering tools. The project currently supports GraphRAG and HybridRAG.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/EcomPilot/rag-lab',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
)