-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
53 lines (42 loc) · 1.34 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
[tool.poetry]
name = "py-image-dedup"
version = "2.0.1"
description = "A library to find duplicate images and delete unwanted ones"
license = "AGPLv3+"
authors = [
"Markus Ressel <[email protected]>",
]
readme = 'README.md'
repository = "https://github.com/markusressel/py-image-dedup"
homepage = "https://github.com/markusressel/py-image-dedup"
keywords = ['deduplication', 'py-image-dedup']
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Development Status :: 5 - Production/Stable"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = "^3.11" # Compatible python versions must be declared here
Pillow = "*"
ordered-set = "*"
watchdog = ">=0.10.2,<5.1.0"
elasticsearch = "^6"
scipy = "*"
numpy = "2.2.1"
container-app-conf = "^5.0.0"
requests = "^2.20.0"
click = "*"
tabulate = ">=0.8.3,<0.10.0"
tqdm = "*"
prometheus-client = "*"
image-match = { git = "https://github.com/markusressel/image-match.git", tag = "2.0.1" }
[tool.poetry.dev-dependencies]
pytest = "*"
[tool.poetry.scripts]
py-image-dedup = 'py_image_dedup.cli:cli'