-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
65 lines (61 loc) · 1.37 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "xibabel"
authors = [
{name = "Matthew Brett", email = "[email protected]"},
{name = "Paul Ivanov", email = "[email protected]"},
{name = "Christopher J. Markiewicz", email = "[email protected]"}
]
readme = "README.md"
requires-python = ">=3.8"
dynamic = ["version", "description"]
home-page = "https://github.com/matthew-brett/xibabel"
classifiers = ['License :: OSI Approved :: BSD License',
'Development Status :: 3 - Alpha']
dependencies = [
'xarray',
'dask',
'nibabel',
'psutil'
]
[project.urls]
Homepage = "https://github.com/matthew-brett/xibabel"
"Source Code" = "https://github.com/matthew-brett/xibabel"
Documentation = "https://matthew-brett.github.io/xibabel"
[project.scripts]
xib-get-test-set = "xibabel.testing.__main__:main"
[project.optional-dependencies]
developer = [
'pre-commit',
'nbclassic',
'jupytext',
'dicom_parser',
'ipywidgets',
'zarr'
]
docs = [
'numpydoc>=1.6.0',
'mkdocs-jupyter',
'mkdocs-gitbook',
'mkdocs-exclude',
'matplotlib',
'ipython',
'jupytext',
'aiohttp'
]
test = [
'pyyaml',
'pytest-doctestplus',
'pytest-xprocess',
'requests',
'aiohttp',
]
optional = [
'nipy',
'h5netcdf',
'matplotlib',
'requests',
'aiohttp'
]