-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
61 lines (53 loc) · 1.67 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
[project]
name = "bfabricpy_workspace"
version = "0.0.0"
requires-python = ">=3.11"
dependencies = [
"itsdangerous>=2.2.0",
]
[tool.uv.workspace]
members = [
"bfabric",
"bfabric_scripts",
"bfabric_app_runner",
"bfabric_rest_proxy",
"bfabric_asgi_auth",
]
[tool.uv.sources]
bfabric = { workspace = true }
bfabric_scripts = { workspace = true }
bfabric_app_runner = { workspace = true }
[tool.pytest.ini_options]
logot_capturer = "logot.loguru.LoguruCapturer"
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.ruff.lint.per-file-ignores]
"**/bfabric_scripts/**" = ["ALL"]
"**/wrapper_creator/**" = ["ALL"]
"**/examples/**" = ["ALL"]
"**/tests/**" = ["ALL"]
"noxfile.py" = ["ALL"]
[tool.black]
line-length = 120
target-version = ["py311"]
[tool.ruff]
line-length = 120
indent-width = 4
target-version = "py311"
[tool.uv]
reinstall-package = ["bfabric", "bfabric_scripts", "bfabric_app_runner", "bfabric_rest_proxy", "bfabric-asgi-auth"]
[tool.basedpyright]
exclude = [
"*/tests/*",
"**/.venv/*",
"**/docs/conf.py",
# TODO this list should ideally not be extended or even consolidated at some point:
"bfabric/src/bfabric/wrapper_creator/bfabric_submitter.py",
"bfabric/src/bfabric/wrapper_creator/bfabric_wrapper_creator.py",
"bfabric_scripts/src/bfabric_scripts/bfabric_save_workflowstep.py",
"bfabric_scripts/src/bfabric_scripts/bfabric_slurm_queue_status.py",
"bfabric_scripts/src/bfabric_scripts/cli/workunit/not_available.py",
"bfabric_scripts/src/bfabric_scripts/bfabric_read_samples_from_dataset.py",
"bfabric_scripts/src/bfabric_scripts/bfabric_read.py",
]
reportImplicitStringConcatenation = false