forked from OSU-NLP-Group/HippoRAG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.01 KB
/
setup.py
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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="hipporag",
version="2.0.0-alpha.1",
author="Bernal Jimenez Gutierrez",
author_email="[email protected]",
description="A powerful graph-based RAG framework that enables LLMs to identify and leverage connections within new knowledge for improved retrieval.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/OSU-NLP-Group/HippoRAG",
package_dir={"": "src"},
packages=setuptools.find_packages("src"),
python_requires=">=3.10",
install_requires=[
"torch==2.5.1",
"transformers==4.45.2",
"vllm==0.6.6.post1",
"openai==1.58.1",
"gritlm==1.0.2",
"networkx==3.4.2",
"python_igraph==0.11.8",
"tiktoken==0.7.0",
"pydantic==2.10.4",
"tenacity==8.5.0",
"einops", # No version specified
"tqdm", # No version specified
]
)