-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
49 lines (44 loc) · 1.55 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "DL-DiReCT"
version = "1.0.2"
description = "DL+DiReCT - Direct Cortical Thickness Estimation using Deep Learning-based Anatomy Segmentation and Cortex Parcellation"
readme = "README.md"
authors = [ {name = "Michael Rebsamen"} ]
license = {file = "LICENSE"}
keywords = ["brain morphometry", "cortical thickness", "MRI", "neuroimaging", "neuroanatomy segmentation", "deep-learning"]
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
]
dependencies = [
"antspyx>=0.3.5",
"HD_BET @ https://github.com/mrunibe/HD-BET/archive/refs/heads/master.zip",
"nibabel>=3.2.1",
"numpy<2.0.0",
"pandas>=0.25.3",
"pyradiomics>=3.0.1; python_version<'3.12'",
"pyradiomics @ https://github.com/AIM-Harvard/pyradiomics/archive/refs/heads/circle-ci-mac-os.zip ; python_version>='3.12'",
"scikit-learn>=0.21.3",
"scikit-image>=0.16.2",
"scipy>=1.3.3",
"torch>=1.3.1",
]
[project.urls]
Source = "https://github.com/SCAN-NRAD/DL-DiReCT"
Publication = "https://doi.org/10.1002/hbm.25159"
Issues = "https://github.com/SCAN-NRAD/DL-DiReCT/issues"
[project.scripts]
"dl+direct" = "run_script:run"
"direct" = "run_script:run"
"batch-dl+direct" = "run_script:run"
"stats2table" = "stats2table:main"
"radiomics_extractor" = "radiomics_extractor:main"
"radiomics2table" = "radiomics2table:main"
[tool.setuptools.packages.find]
where = ["src"]