-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (90 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
106 lines (90 loc) · 2.05 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "wu-forensics"
version = "1.6.0"
description = "Epistemic media forensics toolkit - structured uncertainty for courts"
readme = "README.md"
license = "Apache-2.0"
authors = [
{ name = "Zane Hambly" }
]
keywords = [
"forensics",
"deepfake",
"detection",
"media",
"epistemic",
"legal",
"court",
"daubert"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Legal Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Multimedia :: Video",
]
requires-python = ">=3.10"
dependencies = [
"exifread>=3.0",
"python-magic-bin>=0.4;sys_platform=='win32'",
"python-magic>=0.4;sys_platform!='win32'",
"pillow>=10.0",
"reportlab>=4.0",
"jinja2>=3.1",
"click>=8.0",
]
[project.optional-dependencies]
video = [
"opencv-python>=4.8",
"numpy>=1.24",
]
audio = [
"librosa>=0.10",
"soundfile>=0.12",
]
ml = [
"onnxruntime>=1.16",
]
c2pa = [
"c2pa-python>=0.4",
]
all = [
"wu-forensics[video,audio,ml,c2pa]",
]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
]
[project.scripts]
wu = "wu.cli:main"
[project.urls]
Homepage = "https://github.com/Zaneham/wu"
Documentation = "https://wu-forensics.org"
Repository = "https://github.com/Zaneham/wu"
[tool.hatch.build]
ignore-vcs-ignore = true
[tool.hatch.build.targets.wheel]
ignore-vcs-ignore = true
packages = ["src/wu"]
[tool.hatch.build.targets.sdist]
ignore-vcs-ignore = true
include = [
"src/wu/native/*.c",
"src/wu/native/*.h",
"src/wu/native/*.dll",
"src/wu/native/*.so",
"src/wu/native/*.dylib",
"src/wu/native/assembly",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]