-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (58 loc) · 1.99 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
66
67
68
# Copyright © 2023 German Cancer Research Center (DKFZ), Division of Medical Image Computing
#
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "radtract"
version = "0.2.3"
authors = [
{ name="Peter Neher", email="[email protected]" },
]
maintainers = [
{ name="Peter Neher", email="[email protected]" },
]
description = "Radiomic Tractometry for advanced along-tract analysis of diffusion-weighted MRI"
keywords = ["tractometry", "radiomics", "tractography", "diffusion-weighted MRI"]
readme = "README.md"
dependencies = [
'numpy',
'pandas',
'argparse',
'scikit-image',
'scikit-learn',
'nibabel',
'vtk',
'dipy',
'pyradiomics',
'mirp; python_version>="3.11"',
'cmdint',
'fury',
'seaborn'
]
license = { file="LICENSES/Apache-2.0.txt" }
requires-python = ">=3.9,<3.12"
classifiers = [
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
]
[project.urls]
Repository = "https://github.com/MIC-DKFZ/radtract"
[project.scripts]
radtract_parcellate = "radtract.parcellation:main"
radtract_estimate_num_parcels = "radtract.parcellation:num_parcels_for_set"
radtract_features = "radtract.features:main"
radtract_tdi = "radtract.tractdensity:main"
radtract_filter_density = "radtract.tractfiltering:density_filter_cmdentry"
radtract_filter_visitationcount = "radtract.tractfiltering:visitation_count_filter_cmdentry"
radtract_filter_maskoverlap = "radtract.tractfiltering:mask_overlap_filter_cmdentry"
radtract_filter_endpoints = "radtract.tractfiltering:endpoint_filter_cmdentry"
radtract_filter_length = "radtract.tractfiltering:length_filter_cmdentry"
radtract_filter_curvature = "radtract.tractfiltering:curvature_filter_cmdentry"
[tool.setuptools.package-data]
radtract = ["*.yaml"]
[tool.setuptools.packages.find]
include = ["radtract*"]
exclude = ["LICENSES*", "tests*"]