-
Notifications
You must be signed in to change notification settings - Fork 44
/
pyproject.toml
42 lines (38 loc) · 951 Bytes
/
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
35
36
37
38
39
40
41
42
[tool.poetry]
name = "tabled-pdf"
version = "0.2.0"
description = "Detect and recognize tables in PDFs and images."
authors = ["Vik Paruchuri <[email protected]>"]
readme = "README.md"
license = "GPL-3.0-or-later"
repository = "https://github.com/VikParuchuri/tabled"
keywords = ["table", "table-recognition", "ocr", "pdf"]
packages = [
{include = "tabled"}
]
include = [
"extract.py",
"table_app.py",
"run_table_app.py",
]
[tool.poetry.dependencies]
python = "^3.10"
surya-ocr = "~0.8.0"
click = "^8.1.7"
pypdfium2 = "^4.30.0"
pydantic-settings = "^2.5.2"
pydantic = "^2.9.2"
python-dotenv = "^1.0.1"
tabulate = "^0.9.0"
scikit-learn = "^1.5.2"
[tool.poetry.group.dev.dependencies]
jupyter = "^1.1.1"
datasets = "^3.0.1"
streamlit = "^1.39.0"
rapidfuzz = "^3.10.0"
[tool.poetry.scripts]
tabled_gui = "run_table_app:run_app"
tabled = "extract:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"