-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (29 loc) · 1.07 KB
/
pyproject.toml
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
[tool.poetry]
name = "bookshelf-scanner"
version = "0.0.0"
description = "Required packages for the final project for CS5330."
authors = ["James Parkington <[email protected]>"]
readme = "README.md"
packages = [{ include = "bookshelf_scanner" }]
[tool.poetry.scripts]
book-segmenter = "bookshelf_scanner.core.book_segmenter.__main__:main"
text-extractor = "bookshelf_scanner.core.text_extractor.__main__:main"
config-optimizer = "bookshelf_scanner.core.config_optimizer.__main__:main"
fuzzy-matcher = "bookshelf_scanner.core.fuzzy_matcher.__main__:main"
match-approver = "bookshelf_scanner.core.match_approver.__main__:main"
bookshelf-scanner = "bookshelf_scanner.__main__:main"
[tool.poetry.dependencies]
python = "^3.12"
duckdb = "*"
easyocr = "*"
matplotlib = "*"
omegaconf = "*"
onnxruntime = "*"
opencv-python = "*"
rapidfuzz = "*"
torch = "*"
[tool.poetry.group.dev.dependencies]
jupyter = "^1.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"