forked from Deep-MI/FastSurfer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (63 loc) · 1.83 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 = ['setuptools >= 61.0.0']
build-backend = 'setuptools.build_meta'
[project]
name = 'fastsurfer'
version = "2.2.0"
description = 'a fast and accurate deep-learning based neuroimaging pipeline'
readme = 'README.md'
license = {file = 'LICENSE'}
requires-python = '>=3.8'
authors = [
{name = 'Martin Reuter', email = 'martin.reuter@dzne.de'},
{name = 'Leonie Henschel', email = 'leonie.henschel@dzne.de'},
{name = 'David Kügler', email = 'david.kuegler@dzne.de'},
]
maintainers = [
{name = 'Martin Reuter', email = 'martin.reuter@dzne.de'},
{name = 'Leonie Henschel', email = 'leonie.henschel@dzne.de'},
{name = 'David Kügler', email = 'david.kuegler@dzne.de'},
]
keywords = [
'python',
'Deep learning',
'Segmentation',
'Brain segmentation',
'Brain analysis',
'volumetry',
]
classifiers = [
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
]
dependencies = [
'h5py>=3.7',
'lapy>=0.4.1',
'matplotlib>=3.5.1',
'nibabel>=3.2.2',
'numpy>=1.21',
'pandas>=1.4.3',
'pytorch>=1.12.0',
'pyyaml>=6.0',
'scipy>=1.8.0',
'yacs>=0.1.8',
'simpleitk>=2.1.1',
'scipy>=1.8.0',
'tensorboard>=2.9.1',
'torchio>=0.18.83',
'tqdm>=4.64',
]
[project.urls]
homepage = 'https://fastsurfer.org'
documentation = 'https://fastsurfer.org'
source = 'https://github.com/Deep-MI/FastSurfer'
tracker = 'https://github.com/Deep-MI/FastSurfer/issues'