-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 890 Bytes
/
Copy pathsetup.py
File metadata and controls
36 lines (35 loc) · 890 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
32
33
34
35
36
from setuptools import setup
setup(
name="hector",
version="2.1.0",
description="HECTOR - Hierarchical Evaluation of Civil-Criminal Textual's Orchestrator & Retrieval",
author="HECTOR Team",
py_modules=["main"],
install_requires=[
"chromadb>=0.4.0",
"fastapi>=0.100.0",
"pypdf>=3.17.0",
"Pillow>=10.0.0",
"pytesseract>=0.3.10",
"requests>=2.31.0",
"sentence-transformers>=2.2.0",
"typer>=0.12.0",
"rich>=13.0.0",
"uvicorn>=0.23.0",
],
extras_require={
"dev": [
"pytest>=8.3.0",
"pytest-asyncio>=0.25.0",
"pytest-timeout>=2.3.0",
"httpx>=0.28.0",
"ruff>=0.8.0",
],
},
entry_points={
"console_scripts": [
"hector=main:main",
],
},
python_requires=">=3.11",
)