-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1.18 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "undouble"
dynamic = ["version"]
authors = [{ name = "Erdogan Taskesen", email = "erdogant@gmail.com" },]
description = "Undouble is a Python package to detect (near-)identical images."
readme = "README.md"
requires-python = ">=3"
license = "MIT"
keywords = ["images", "duplicates", "identical"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
'matplotlib',
'numpy',
'tqdm',
'clustimage>=1.6.6',
'ismember',
'datazets>=1.0.0',
# 'opencv-python-headless',
]
[project.urls]
Homepage = "https://erdogant.github.io/undouble"
Download = "https://github.com/erdogant/undouble/archive/{version}.tar.gz"
[tool.setuptools]
packages = ["undouble"]
include-package-data = true
[tool.setuptools.dynamic]
version = { attr = "undouble.__version__" }