-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpyproject.toml
37 lines (33 loc) · 1000 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
[tool.poetry]
name = "image-similarity-measures"
version = "0.3.7"
description = "Evaluation metrics to assess the similarity between two images."
authors = ["UP42 <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "image_similarity_measures"}]
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Development Status :: 5 - Production/Stable",
]
[tool.poetry.group.test.dependencies]
pytest = "^7.3.0"
rasterio = "^1.3.6"
[tool.poetry.dependencies]
python = ">=3.9, <3.13"
numpy = "^1.24.2"
scikit-image = "^0.21.0"
scipy = "^1.11.2"
opencv-python = "^4.7.0.72"
phasepack = "^1.5"
[tool.poetry.extras]
rasterio = ["rasterio"]
speedups = ["pyfftw"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
image-similarity-measures = "image_similarity_measures.evaluate:main"