forked from elisemercury/Duplicate-Image-Finder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1.32 KB
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
[tool.poetry]
name = "fast-diff-py"
version = "1.0.4"
description = "Multiprocessing implementation of difpy with a focus on performance, disk cache and progress retention."
authors = ["AliSot2000 <alisot200@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/AliSot2000/Fast-Image-Deduplicator"
keywords = ['python', 'image deduplicator', 'fast image deduplicator']
classifiers = [
"Development Status :: 4 - Beta",
'Intended Audience :: Developers',
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
'License :: OSI Approved :: MIT License', # Again, pick a license
'Programming Language :: Python :: 3.12',
]
include = ["plots/"]
[tool.poetry.extras]
cuda = ["cupy"]
[tool.poetry.dependencies]
python = "^3.12"
numpy = "^2.2.1"
scikit-image = "^0.25.0"
pydantic = "^2.10.4"
matplotlib = "^3.10.0"
annotated-types = "^0.7.0"
opencv-python = "^4.10.0.84"
cupy = {version = "^13.3.0", optional = true}
[tool.poetry.group.dev.dependencies]
jupyterlab = "4.3.4"
pandas = "2.2.3"
difpy = "^4.1.3"
[tool.poetry.scripts]
difpy = 'fast_diff_py.dif:main'
fastdiffpy = 'fast_diff_py.main:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"