-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
109 lines (98 loc) · 3.21 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
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
107
108
109
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bob.pad.base"
version = "5.0.5b0"
requires-python = ">=3.9"
description = "A framework for executing the chain of presentation attack detection (PAD) experiments"
dynamic = ["readme"]
license = {text = "GPLv3 License"}
authors = [
{name = "Pavel Korshunov"},
{email = "[email protected]"},
]
keywords = ["PAD framework", "grid support", "pipeline organization"]
classifiers=[
"Framework :: Bob",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"setuptools",
"clapp",
"bob.extension",
"bob.io.base",
"bob.pipelines",
"bob.measure",
"bob.bio.base",
"click",
"click-plugins",
"dask",
"matplotlib",
"numpy",
"scikit-learn",
"scipy",
"sqlalchemy",
"tabulate",
]
[project.urls]
documentation = "https://www.idiap.ch/software/bob/docs/bob/bob.pad.base/master/sphinx/"
homepage = "https://pypi.org/project/bob.pad.base/"
repository = "https://gitlab.idiap.ch/bob/bob.pad.base"
changelog = "https://gitlab.idiap.ch/bob/bob.pad.base/-/releases"
[project.optional-dependencies]
qa = ["pre-commit"]
doc = [
"sphinx",
"sphinx_rtd_theme",
"sphinx-autodoc-typehints",
"auto-intersphinx",
"sphinxcontrib-programoutput",
"matplotlib",
]
test = [
"pytest",
"pytest-cov",
"coverage",
]
[tool.setuptools]
zip-safe = false
package-dir = {"" = "src"}
[tool.setuptools.dynamic]
readme = {file = "README.rst"}
[project.entry-points."bob.cli"]
pad = "bob.pad.base.script.pad:pad"
[project.entry-points."bob.pad.cli"]
metrics = "bob.pad.base.script.pad_commands:metrics"
multi-metrics = "bob.pad.base.script.pad_commands:multi_metrics"
hist = "bob.pad.base.script.pad_commands:hist"
det = "bob.pad.base.script.pad_commands:det"
roc = "bob.pad.base.script.pad_commands:roc"
epc = "bob.pad.base.script.pad_commands:epc"
gen = "bob.pad.base.script.pad_commands:gen"
evaluate = "bob.pad.base.script.pad_commands:evaluate"
cross = "bob.pad.base.script.cross:cross"
finalize-scores = "bob.pad.base.script.finalize_scores:finalize_scores"
run-pipeline = "bob.pad.base.script.run_pipeline:run_pipeline"
[tool.distutils.bdist_wheel]
universal = true
[tool.isort]
profile = "black"
line_length = 80
order_by_type = true
lines_between_types = 1
[tool.black]
line-length = 80
[tool.pytest.ini_options]
addopts = [
"--import-mode=append",
"--cov-report=term-missing",
"--cov=bob.pad.base",
]
junit_logging = "all"
junit_log_passing_tests = false