-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.27 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pathology-evidence-ai"
version = "0.1.0"
description = "Local pathology PDF ingestion, AI-assisted retrieval, and citation-backed evidence workspace."
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE"}
dependencies = [
"fastapi>=0.115.0",
"httpx>=0.28.0",
"openai>=1.75.0",
"orjson>=3.10.0",
"pdfplumber>=0.11.0",
"pgvector>=0.3.6",
"pydantic>=2.10.0",
"pydantic-settings>=2.7.0",
"psycopg[binary]>=3.2.0",
"pymupdf>=1.27.0",
"python-multipart>=0.0.20",
"pypdf>=6.0.0",
"python-dotenv>=1.0.1",
"pyyaml>=6.0.2",
"sqlalchemy>=2.0.36",
"tenacity>=9.0.0",
"tiktoken>=0.9.0",
"typer>=0.16.0",
"uvicorn>=0.34.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0",
"ruff>=0.11.0",
]
[project.scripts]
pathology-api = "apps.pathology_api.main:run"
pathology-ingest = "apps.ingest_worker.cli:main"
pathology-train = "apps.train_worker.cli:main"
pathology-eval = "apps.eval_worker.cli:main"
pathology-client = "apps.pathology_client.cli:main"
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.packages.find]
include = ["apps*", "src*"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]