-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
55 lines (51 loc) · 1.51 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
43
44
45
46
47
48
49
50
51
52
53
54
55
[tool.poetry]
name = "robotframework-doctestlibrary"
version = "0.23.0"
description = "A library for Visual Document Testing"
authors = ["Many Kasiriha <many.kasiriha@dbschenker.com>"]
maintainers = ["Many Kasiriha <many.kasiriha@dbschenker.com>"]
license = "Apache-2.0"
packages = [
{ include = "DocTest" },
]
exclude = ["DocTest/data/frozen_east_text_detection.pb"]
readme = "./README.md"
homepage = "https://github.com/manykarim/robotframework-doctestlibrary"
[tool.poetry.dependencies]
python = "^3.8.1"
PyMuPDF = ">=1.23.1"
imutils = "*"
numpy = [
{version = "<1.25", python = "<3.9"},
{version = ">=1.25, <2.0", python = ">=3.9, <3.12"},
{version = ">=1.26, <2.0", python = ">=3.12,<3.13"},
{version = ">=2.1.0, <2.2.0", python = ">=3.13"}
]
opencv-python-headless = "*"
parsimonious = "*"
pytesseract = "*"
robotframework = ">=4"
scipy = [
{version = "<1.11", python = "<=3.8"},
{version = "*", python = ">3.8,<3.12"},
{version = ">=1.11", python = "^3.12"}
]
scikit-image = [
{version = "<0.22", python = "<=3.8"},
{version = "*", python = ">3.8,<3.12"},
{version = ">=0.22.0", python = ">=3.12,<3.13"},
{version = ">=0.25.0rc1", python = ">=3.13", allow-prereleases = true},
]
Wand = "*"
pylibdmtx = "*"
deepdiff = "*"
pyzbar = "^0.1.9"
setuptools = { version = "*", python = "^3.12" }
[tool.poetry.dev-dependencies]
pytest = "*"
invoke = "*"
coverage = "*"
robotframework-stacktrace = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"