-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (55 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
58 lines (55 loc) · 1.45 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
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = [
"setuptools>=61.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "pimage"
version = "1.1.1"
keywords = ["image", "copy-move", "attack", "detection"]
authors = [
{ name="Rahmat Nazali Salimi", email="rahmatnazali95@gmail.com" },
]
maintainers = [
{ name="Rahmat Nazali Salimi", email="rahmatnazali95@gmail.com" },
]
description = "Library for detecting image copy-move attack"
readme = "README-PYPI.md"
requires-python = ">=3.8.10"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Image Processing"
]
dependencies = [
"numpy==1.24.1",
"scikit-learn==1.5.0",
"tqdm==4.66.3",
"Pillow==12.1.1",
"imageio==2.25.0",
]
[project.urls]
"Homepage" = "https://github.com/rahmatnazali/pimage"
"Bug Tracker" = "https://github.com/rahmatnazali/pimage/issues"
[tool.setuptools.packages.find]
where = ["src"]
include = ["pimage"]
exclude = [
".github",
"assets",
"dataset",
"example",
"output",
"venv"
]
namespaces = false