-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 943 Bytes
/
Copy pathpyproject.toml
File metadata and controls
46 lines (40 loc) · 943 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel", "cibuildwheel"]
build-backend = "setuptools.build_meta"
[project]
name = "raidionicsval"
version = "1.1.1"
description = "Raidionics backend for running validation and metrics computation"
readme = "README.md"
license = { text = "BSD-2-Clause" }
requires-python = ">=3.9"
authors = [{ name = "David Bouget", email = "david.bouget@sintef.no" }]
dependencies = [
"arch",
"h5py",
"nibabel",
"pandas",
"SimpleITK<=2.4.1",
"statsmodels",
"scikit-image",
"tqdm",
"scikit-learn",
"seaborn",
"Jinja2",
]
[project.scripts]
raidionicsval = "raidionicsval.__main__:main"
[tool.setuptools.packages.find]
include = [
"raidionicsval",
"raidionicsval.Utils",
"raidionicsval.Validation",
"raidionicsval.Studies",
"raidionicsval.Plotting",
"raidionicsval.Computation",
"tests", ]
[tool.black]
line-length=120
[tool.flake8]
max-line-length = 120
ignore = ["E203"]