-
-
Notifications
You must be signed in to change notification settings - Fork 196
/
pyproject.toml
42 lines (32 loc) · 1.03 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
35
36
37
38
39
40
41
42
[tool.poetry]
name = "receipt_parser_core"
version = "0.2.5"
description = "A supermarket receipt parser written in Python using tesseract OCR"
authors = ["Matthias Endler <matthias-endler@gmx.net>", "William Todt <william.todt@mailbox.org>", "Linus Dietz <me@linusdietz.eu>" ]
license = "Apache-2.0"
homepage = "https://github.com/ReceiptManager/receipt-parser-legacy"
repository = "https://github.com/ReceiptManager/receipt-parser-legacy"
keywords = ["receipt", "ocr", "parser"]
readme = "README.md"
[tool.poetry.build]
generate-setup-file = false
[tool.poetry.dependencies]
python = "3.9.13"
pyyaml = ">=5.3.1,<7.0.0"
python-dateutil = "^2.8.1"
Pillow = "^8.1.2"
py = "^1.10.0"
wand = "^0.6.3"
pytesseract = "^0.3.6"
terminaltables = "^3.1.0"
numpy = "^1.19.4"
opencv-python = "^4.4.0"
scipy = "^1.6.2"
[tool.poetry.dev-dependencies]
pytest = "^7.0.0"
black = {version = "^22.6", allow-prereleases = true}
[tool.poetry.scripts]
run = 'receipt_parser_core:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"