forked from Xiaopengli1/PDR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (37 loc) · 1.07 KB
/
setup.py
File metadata and controls
38 lines (37 loc) · 1.07 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
"""
PDR (Personalized Deep Research) - A User-Centric Framework for Knowledge Discovery.
SIGIR '26 Resource Track. https://github.com/Xiaopengli1/PDR
"""
from setuptools import find_packages, setup
setup(
name="pdr",
version="0.1.0",
py_modules=["deepsearcher"],
python_requires=">=3.10",
packages=find_packages(exclude=["tests", "examples"]),
install_requires=[
"argparse",
"firecrawl-py",
"langchain_text_splitters",
"pdfplumber",
"pymilvus[model]",
"openai",
"numpy",
"tqdm",
"termcolor",
"fastapi",
"uvicorn",
"pydantic-settings",
"rouge-score",
"nltk",
"pyyaml",
],
entry_points={
"console_scripts": ["deepsearcher=deepsearcher.cli:main"],
},
description="Personalized Deep Research (PDR): A User-Centric Framework for Knowledge Discovery",
author="Xiaopeng Li et al.",
author_email="",
url="https://github.com/Xiaopengli1/PDR",
keywords=["deep research", "personalization", "RAG", "information retrieval"],
)