forked from manykarim/robotframework-imagecompare
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 675 Bytes
/
pyproject.toml
File metadata and controls
28 lines (25 loc) · 675 Bytes
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
[tool.poetry]
name = "robotframework-imagecompare"
version = "0.2.0"
description = "A Robot Framework Library for image comparisons"
authors = ["Many Kasiriha <many.kasiriha@dbschenker.com>"]
license = "Apache 2.0"
packages = [
{ include = "ImageCompare" },
]
readme = "./docs/README.md"
homepage = "https://github.com/manykarim/robotframework-imagecompare"
[tool.poetry.dependencies]
python = ">=3.8,<3.14"
opencv-python-headless = "*"
robotframework = ">=4"
numpy = "*"
scikit-image = "*"
imutils = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
invoke = "*"
coverage = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"