-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (70 loc) · 1.72 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bob.io.base"
version = "5.1.1b0"
requires-python = ">=3.9"
description = "Basic IO for Bob"
dynamic = ["readme"]
license = {text = "BSD 3-Clause License"}
authors = [
{name = "Andre Anjos", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"bob",
"h5py",
"imageio",
"numpy",
"pillow",
]
[project.urls]
documentation = "https://www.idiap.ch/software/bob/docs/bob/bob.io.base/master/sphinx"
homepage = "https://pypi.org/project/bob.io.base"
repository = "https://gitlab.idiap.ch/bob/bob.io.base"
changelog = "https://gitlab.idiap.ch/bob/bob.io.base/-/releases"
[project.optional-dependencies]
qa = ["pre-commit"]
doc = [
"sphinx",
"sphinx_rtd_theme",
"auto-intersphinx",
]
test = [
"pytest",
"pytest-cov",
"coverage",
]
[tool.setuptools]
zip-safe = true
package-dir = {"" = "src"}
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}
[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.coverage.run]
relative_files = true
[tool.pytest.ini_options]
addopts = [
"--import-mode=append",
"--cov-report=term-missing",
"--cov=bob.io.base",
]
junit_logging = "all"
junit_log_passing_tests = false
norecursedirs = ["src/*"]