-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
69 lines (62 loc) · 1.25 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
[project]
name = "pixl"
version = "0.2.0rc0"
description = "Top-level PIXL project"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
'core',
'pixl_cli',
'pytest-pixl',
"hasher",
"pixl_dcmd",
"pixl_export",
"pixl_imaging",
]
[tool.uv.sources]
pixl_cli = { workspace = true }
core = { workspace = true }
pytest-pixl = { workspace = true }
hasher = { workspace = true }
pixl_dcmd = { workspace = true }
pixl_export = { workspace = true }
pixl_imaging = { workspace = true }
[tool.uv.workspace]
members = [
"cli",
"pixl_core",
"pytest-pixl",
"hasher",
"pixl_dcmd",
"pixl_export",
"pixl_imaging",
]
[tool.hatch.build.targets.wheel]
include = [
"cli/**",
"pixl_core/**",
"pytest-pixl/**",
"hasher/**",
"pixl_dcmd/**",
"pixl_export/**",
"pixl_imaging/**"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"mypy==1.13.0",
"pre-commit==4.0.1",
"pytest==8.3.4",
"ruff==0.8.3",
"pytest-mock==3.14.0",
"httpx==0.28.*",
"pytest-asyncio==0.24.0",
"pytest-check==2.4.1",
"pytest-cov==6.0.0",
"pytest-pixl==0.2.0rc0",
"xnat4tests==0.3.12",
"dcm2niix==1.0.20220715",
"nibabel==5.3.2",
]