-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (60 loc) · 1.67 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
54
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "conseal"
version = "2024.12"
dependencies = [
"numpy",
"jpeglib >= 1.0.0",
"scipy",
"numba",
"setuptools"
]
requires-python = ">= 3.8"
authors = [
{name = "Martin Benes", email = "[email protected]"},
{name = "Benedikt Lorch", email = "[email protected]"}
]
description = "Implementation of modern image steganographic algorithms"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["steganography", "image", "jpeg"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Communications",
"Topic :: Education",
"Topic :: Multimedia",
"Topic :: Multimedia :: Graphics",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Security",
"Topic :: Utilities"
]
[project.urls]
Homepage = "https://pypi.org/project/conseal/"
Documentation = "https://conseal.readthedocs.io/"
Source = "https://github.com/uibk-uncover/conseal/"
[project.optional-dependencies]
dev = [
"flake8",
"parameterized",
"pillow",
"pandas"
]
deploy = []
[tool.setuptools.packages.find]
include = ["conseal*"]
exclude = ["wheelhouse*"]
namespaces = false
[tool.coverage.report]
fail_under = 80
[tool.coverage.run]
branch = true
include = ["conseal/*"]
command_line = "-m unittest discover -s test/"