forked from spinalcordtoolbox/spinalcordtoolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
120 lines (115 loc) · 4.21 KB
/
Copy pathsetup.py
File metadata and controls
120 lines (115 loc) · 4.21 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
path_version = path.join(here, 'spinalcordtoolbox', 'version.txt')
with open(path_version) as f:
version = f.read().strip()
setup(
name='spinalcordtoolbox',
version=version,
description='Library of analysis tools for MRI of the spinal cord',
long_description=long_description,
url='https://www.neuro.polymtl.ca/',
author='NeuroPoly Lab, Polytechnique Montreal',
author_email='neuropoly@googlegroups.com',
license='LGPLv3',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Education',
'Topic :: Scientific/Engineering :: Image Processing',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
],
keywords='Magnetic Resonance Imaging MRI spinal cord analysis template',
packages=find_packages(exclude=['.git', 'data', 'dev', 'dev.*',
'install', 'testing']),
include_package_data=True,
python_requires="==3.10.*",
extras_require={
'docs': [
'sphinxcontrib-programoutput',
'sphinx_rtd_theme',
'sphinx-copybutton',
'furo==2023.09.10',
'recommonmark',
'sphinx',
'sphinx_argparse',
],
},
entry_points=dict(
console_scripts=[
'{}=spinalcordtoolbox.compat.launcher:main'.format(x) for x in
[
'sct_analyze_lesion',
'sct_analyze_texture',
'sct_apply_transfo',
'sct_check_dependencies',
'sct_concat_transfo',
'sct_compute_ascor',
'sct_compute_ernst_angle',
'sct_compute_hausdorff_distance',
'sct_compute_compression',
'sct_compute_flow',
'sct_compute_mtr',
'sct_compute_mtsat',
'sct_compute_snr',
'sct_convert',
'sct_create_mask',
'sct_crop_image',
'sct_deepseg',
'sct_deepseg_gm',
'sct_deepseg_lesion',
'sct_deepseg_sc',
'sct_denoising_onlm',
'sct_detect_compression',
'sct_detect_pmj',
'sct_dice_coefficient',
'sct_dmri_compute_bvalue',
'sct_dmri_compute_dti',
'sct_dmri_concat_b0_and_dwi',
'sct_dmri_concat_bvals',
'sct_dmri_concat_bvecs',
'sct_dmri_denoise_patch2self',
'sct_dmri_display_bvecs',
'sct_dmri_moco',
'sct_dmri_separate_b0_and_dwi',
'sct_dmri_transpose_bvecs',
'sct_download_data',
'sct_extract_metric',
'sct_flatten_sagittal',
'sct_fmri_compute_tsnr',
'sct_fmri_moco',
'sct_get_centerline',
'sct_image',
'sct_label_utils',
'sct_label_vertebrae',
'sct_maths',
'sct_merge_images',
'sct_process_segmentation',
'sct_run_batch',
'sct_propseg',
'sct_qc',
'sct_register_multimodal',
'sct_register_to_template',
'sct_resample',
'sct_smooth_spinalcord',
'sct_straighten_spinalcord',
'sct_testing',
'sct_version',
'sct_warp_template',
]
],
),
)