-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
153 lines (136 loc) · 5.33 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bob.bio.base"
version = "8.0.1b0"
requires-python = ">=3.9"
description = "Tools for running biometric recognition experiments"
dynamic = ["readme"]
license = {text = "BSD 3-Clause License"}
authors = [
{name = "Manuel Gunther", email = "siebenkopf@googlemail.com"},
]
keywords = ["bob", "biometric recognition", "evaluation"]
classifiers=[
"Framework :: Bob",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"bob",
"bob.io.base",
"bob.learn.em",
"bob.measure",
"bob.pipelines",
"clapper",
"click",
"click-plugins",
"dask",
"numpy",
"pandas",
"scipy",
"setuptools",
"tabulate",
]
[project.urls]
documentation = "https://www.idiap.ch/software/bob/docs/bob/bob.bio.base/master/sphinx/"
homepage = "https://pypi.org/project/bob.bio.base/"
repository = "https://gitlab.idiap.ch/bob/bob.bio.base"
changelog = "https://gitlab.idiap.ch/bob/bob.bio.base/-/releases"
[project.optional-dependencies]
qa = ["pre-commit"]
doc = [
"sphinx",
"sphinx_rtd_theme",
"sphinx-autodoc-typehints",
"auto-intersphinx",
"sphinxcontrib-programoutput",
"matplotlib",
"dask-ml",
"bob.bio.face",
"bob.bio.vein",
"bob.bio.spear",
"bob.bio.video",
]
test = [
"pytest",
"pytest-cov",
"coverage",
"dask-ml",
"matplotlib",
]
[tool.setuptools]
zip-safe = false
package-dir = {"" = "src"}
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}
[project.entry-points."bob.bio.config"]
dummy = "bob.bio.base.config.dummy.config" # for test purposes only
dummy2 = "bob.bio.base.config.dummy.config2" # for test purposes only
dummy_samples = "bob.bio.base.config.dummy.samples_list" # for test purposes only
atnt = "bob.bio.base.config.database.atnt"
[project.entry-points."bob.bio.database"]
atnt = "bob.bio.base.config.database.atnt:database"
dummy = "bob.bio.base.config.dummy.database:database" # for test purposes only
[project.entry-points."bob.cli"]
bio = "bob.bio.base.script.bio:bio"
vulnerability = "bob.bio.base.script.vulnerability:vulnerability"
[project.entry-points."bob.bio.cli"]
resources = "bob.bio.base.script.resources:resources"
annotate = "bob.bio.base.script.annotate:annotate"
annotate-samples = "bob.bio.base.script.annotate:annotate_samples"
metrics = "bob.bio.base.script.commands:metrics"
multi-metrics = "bob.bio.base.script.commands:multi_metrics"
roc = "bob.bio.base.script.commands:roc"
det = "bob.bio.base.script.commands:det"
epc = "bob.bio.base.script.commands:epc"
hist = "bob.bio.base.script.commands:hist"
cmc = "bob.bio.base.script.commands:cmc"
dir = "bob.bio.base.script.commands:dir"
gen = "bob.bio.base.script.gen:gen"
evaluate = "bob.bio.base.script.commands:evaluate"
sort = "bob.bio.base.script.sort:sort"
pipeline = "bob.bio.base.script.pipeline:pipeline"
compare-samples = "bob.bio.base.script.compare_samples:compare_samples"
[project.entry-points."bob.bio.annotator"]
dummy = "bob.bio.base.config.dummy.annotator:annotator"
[project.entry-points."bob.bio.pipeline.cli"]
simple = "bob.bio.base.script.pipeline_simple:pipeline_simple"
score-norm = "bob.bio.base.script.pipeline_score_norm:pipeline_score_norm"
transform = "bob.bio.base.script.pipeline_transform:pipeline_transform"
train = "bob.bio.base.script.pipeline_train:pipeline_train"
[project.entry-points."bob.vuln.cli"]
metrics = "bob.bio.base.script.vuln_commands:metrics"
hist = "bob.bio.base.script.vuln_commands:hist"
det = "bob.bio.base.script.vuln_commands:det"
roc = "bob.bio.base.script.vuln_commands:roc"
epc = "bob.bio.base.script.vuln_commands:epc"
epsc = "bob.bio.base.script.vuln_commands:epsc"
gen = "bob.bio.base.script.vuln_commands:gen"
fmr_iapmr = "bob.bio.base.script.vuln_commands:fmr_iapmr"
evaluate = "bob.bio.base.script.vuln_commands:evaluate"
[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]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
addopts = [
"--import-mode=append",
"--cov-report=term-missing",
"--cov=bob.bio.base",
]
junit_logging = "all"
junit_log_passing_tests = false