-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 808 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (33 loc) · 808 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "museum-multidiscourse-semantic-system"
version = "0.1.0"
description = "Fully local multi-discourse, multi-view semantic modeling pipeline for museum exhibits."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"easyocr>=1.7",
"ftfy>=6.3",
"langdetect>=1.0.9",
"numpy>=1.26",
"openpyxl>=3.1",
"pandas>=2.2",
"plotly>=5.24",
"pymupdf>=1.24",
"pydantic>=2.8",
"pypdf>=5.0",
"pyyaml>=6.0.2",
"qdrant-client>=1.11",
"requests>=2.32",
"scikit-learn>=1.5",
"sentence-transformers>=3.0",
"tenacity>=9.0",
"typer>=0.12",
"umap-learn>=0.5.6",
]
[project.scripts]
museum-pipeline = "src.cli.main:app"
[tool.setuptools.packages.find]
include = ["src*"]