-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
50 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
[project]
name = "brainextractor"
description = "brain extraction in python"
readme = "README.md"
requires-python = ">=3.7"
license = { text = "MIT License" }
authors = [{ name = "Andrew Van", email = "[email protected]" }]
keywords = [
"python",
"image-processing",
"neuroscience",
"neuroimaging",
"segmentation",
"fsl",
"brain-extraction",
"skull-stripping",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"Topic :: Scientific/Engineering :: Image Processing",
]
urls = { github = "https://github.com/vanandrew/brainextractor" }
version = "0.2.2"
dynamic = ["entry-points"]
dependencies = [
"numba >= 0.51.2",
"nibabel >= 3.2.1",
"trimesh >= 3.8.15",
"numpy >= 1.19.4",
"scipy >= 1.5.4",
"pyrender >= 0.1.43",
]
[project.optional-dependencies]
dev = [
"black >= 22.0",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
zip-safe = true
[tool.black]
line-length = 120
target-version = ["py37", "py38", "py39", "py310"]