-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (36 loc) · 1.05 KB
/
setup.py
File metadata and controls
37 lines (36 loc) · 1.05 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
from setuptools import setup, find_packages
setup(
name="pyhera",
url="https://github.com/KaplanOpenSource/hera",
packages=find_packages(),
author="Yehuda Arav",
maintainer="Yehuda Arav",
maintainer_email="",
description="Scientific data management and analysis platform",
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
],
python_requires=">=3.9",
extras_require={
"rag": [
"sentence-transformers>=2.7",
"cassandra-driver>=3.29",
"qdrant-client>=1.9",
"httpx>=0.27",
"fastapi>=0.111",
"uvicorn[standard]>=0.29",
"typer[all]>=0.12",
"rich>=13",
"watchdog>=4.0",
"pydantic-settings>=2.3",
],
},
entry_points={
"mkdocs.plugins": [
"hera_rag_search = hera.utils.rag.serve:HeraMkDocsPlugin",
],
},
)