-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpyproject.toml
54 lines (46 loc) · 1.12 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
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "twixtools"
dynamic = ["version"]
license = {file = "LICENSE"}
authors = [{ name = "Philipp Ehses", email = "[email protected]" }]
description = "file reader for Siemens twix(.dat)-files"
readme = "README.md"
requires-python = ">=3.8, <4"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
keywords = ["twix", "siemens", "mri"]
dependencies = [
"numpy",
"scipy",
"matplotlib",
"setuptools",
"tqdm"
]
[project.urls]
Homepage = "https://github.com/pehses/twixtools"
Issues = "https://github.com/pehses/twixtools/issues"
[project.optional-dependencies]
test = [
"pytest"
]
[project.scripts]
convert_to_cfl = "utils.convert_to_cfl:main"
rotate_3Dcfl = "utils.rotate_3Dcfl:main"
datmeta2json = "utils.datmeta2json:main"
[tool.setuptools]
packages = [
"twixtools",
"twixtools.contrib"
]
zip-safe = false
[tool.setuptools_scm]
write_to = "_version.py"
[tool.pytest.ini_options]
testpaths = ["test"]
max-line-length = 127
max-complexity = 10