-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 1005 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 1005 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
[project]
name = "xa30_workaround"
description = "scripts for xa30 workarounds"
readme = "README.md"
requires-python = ">=3.7"
license = { text = "MIT License" }
authors = [{ name = "Andrew Van", email = "vanandrew@wustl.edu" }]
keywords = ["neuroimaging"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Image Processing",
]
urls = { gitlab = "https://gitlab.com/vanandrew/omni" }
dependencies = [
"nibabel >= 4.0.2",
"pydicom >= 2.3.1",
"numpy >= 1.22.4",
"indexed-gzip >= 1.7.1",
]
dynamic = ["scripts", "version"]
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
zip-safe = true
[tool.setuptools_scm]
version_file = "xa30_workaround/_version.py"
[tool.setuptools.packages.find]
exclude = ["tests", "build", "extern"]
[tool.black]
line-length = 120
target-version = ['py37']
exclude = "extern|build"