forked from AliRN9/Documents_Parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 880 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
[tool.poetry]
name = "documents_parser"
version = "0.1.0"
description = "Кейс: Прием учетных документов"
authors = [
"Andrey Donskoy <[email protected]>",
"Medvedev Artem <[email protected]>",
"Ramazanov Ali <[email protected]>",
]
[installer]
no-binary = ["pdftopng"]
[tool.poetry.dependencies]
python = ">=3.9,<3.13,!=3.9.7"
pandas = "^2.1.1"
matplotlib = "^3.8.0"
seaborn = "^0.13.0"
numpy = "^1.26.0"
scikit-learn = "^1.3.1"
streamlit = "^1.27.2"
pytesseract = "^0.3.10"
pdf2image = "^1.16.3"
tqdm = "^4.66.1"
pypdf2 = "2.12.1"
camelot-py = "^0.11.0"
opencv-python = "^4.8.1.78"
openpyxl = "^3.1.2"
ghostscript = "^0.7"
[tool.poetry.dev-dependencies]
pytest = "^5.4.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
parser = 'documents_parser.main:main'