-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
68 lines (60 loc) · 1.49 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
[project]
name = "library"
version = "0.1.0"
description = "CANFAR Science Platform Container Library"
readme = "README.md"
authors = [
{ name = "Shiny Brar", email = "shiny.brar@nrc-cnrc.gc.ca" }
]
requires-python = ">=3.10"
dependencies = [
"docker>=7.1.0",
"pydantic>=2.12.5",
"pyyaml>=6.0.3",
"richforms>=0.4.0",
"typer>=0.21.1",
]
[project.scripts]
library = "library.cli.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["library"]
include = ["library/.hadolint.yaml", "library/renovate.json5"]
[tool.hatch.build.targets.sdist]
include = ["library/.hadolint.yaml", ".hadolint.yaml", "library/renovate.json5", "renovate.json5"]
[dependency-groups]
dev = [
"jsonschema-markdown>=2025.11.0",
"pre-commit>=4.5.1",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"pyyaml>=6.0.3",
"ty>=0.0.11",
"zensical>=0.0.15",
]
[tool.interrogate]
ignore-init-method = true
ignore-init-module = false
ignore-magic = false
ignore-semiprivate = false
ignore-private = false
ignore-property-decorators = false
ignore-module = false
ignore-nested-functions = false
ignore-nested-classes = true
ignore-setters = false
fail-under = 80
exclude = ["setup.py", "docs", "build"]
ignore-regex = ["^get$", "^mock_.*", ".*BaseClass.*"]
verbose = 3
quiet = false
whitelist-regex = []
color = true
[tool.mypy]
explicit_package_bases = true
[tool.pytest.ini_options]
markers = [
"integration: tests that require Docker",
]