-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.cfg
165 lines (161 loc) · 4.48 KB
/
setup.cfg
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
[metadata]
description_file = README.rst
name = rapidtide
description = Tools for performing time delay analysis on fMRI data
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
url = https://github.com/bbfrederick/rapidtide
author = Blaise Frederick
author_email = [email protected],
license = Apache Software License
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Environment :: MacOS X
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Natural Language :: English
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering :: Medical Science Apps.
project_urls =
Documentation = https://rapidtide.readthedocs.io
Source = https://github.com/bbfrederick/rapidtide
Tracker = https://github.com/bbfrederick/rapidtide/issues
[options]
install_requires =
numpy
scipy
pandas
pyarrow
scikit-image
scikit-learn
nibabel
nilearn
matplotlib>=3.3.0
pyfftw
pyqtgraph>=0.13.4
statsmodels
numba
tomlkit
tensorflow>=2.10.0
tf-keras
tqdm
py_modules =
rapidtide/miscmath
rapidtide/correlate
rapidtide/filter
rapidtide/fi
rapidtide/io
rapidtide/resample
rapidtide/stats
rapidtide/util
rapidtide/multiproc
rapidtide/calcnullsimfunc
rapidtide/calcsimfunc
rapidtide/calccoherence
rapidtide/simfuncfit
rapidtide/peakeval
rapidtide/helper_classes
rapidtide/glmpass
rapidtide/dlfilter
rapidtide/wiener
rapidtide/refine
rapidtide/_version
rapidtide/workflows/parser_funcs
rapidtide/workflows/aligntcs
rapidtide/workflows/happy_parser
rapidtide/workflows/niftidecomp
rapidtide/workflows/rapidtide_parser
rapidtide/workflows/rapidtide2x_parser
rapidtide/workflows/showtc
rapidtide/workflows/roisummarize
rapidtide/tidepoolTemplate
rapidtide/tidepoolTemplate_alt
rapidtide/tidepoolTemplate_qt6
rapidtide/tidepoolTemplate_alt_qt6
rapidtide/OrthoImageItem
package_data =
reference/JHU-ArterialTerritoriesNoVent-LVL*regions.txt
reference/JHU-ArterialTerritoriesNoVent-LVL*2mm.nii.gz
reference/ASPECTS*
reference/ATT*
reference/HCP1200*
reference/MNI152*
tests/testdata/*.txt
tests/tmp/.placeholder.txt
scripts =
rapidtide/scripts/aligntcs
rapidtide/scripts/applydlfilter
rapidtide/scripts/atlasaverage
rapidtide/scripts/atlastool
rapidtide/scripts/calcicc
rapidtide/scripts/calctexticc
rapidtide/scripts/ccorrica
rapidtide/scripts/endtidalproc
rapidtide/scripts/filtnifti
rapidtide/scripts/filttc
rapidtide/scripts/fingerprint
rapidtide/scripts/glmfilt
rapidtide/scripts/happy
rapidtide/scripts/happy2std
rapidtide/scripts/happy_legacy
rapidtide/scripts/happywarp
rapidtide/scripts/histnifti
rapidtide/scripts/histtc
rapidtide/scripts/pairwisemergenifti
rapidtide/scripts/pairproc
rapidtide/scripts/physiofreq
rapidtide/scripts/pixelcomp
rapidtide/scripts/plethquality
rapidtide/scripts/polyfitim
rapidtide/scripts/rapidtide
rapidtide/scripts/rapidtide2std
rapidtide/scripts/rapidtide2x_legacy
rapidtide/scripts/resamp1tc
rapidtide/scripts/resamplenifti
rapidtide/scripts/roisummarize
rapidtide/scripts/showarbcorr
rapidtide/scripts/showhist
rapidtide/scripts/showtc
rapidtide/scripts/showstxcorr
rapidtide/scripts/showxcorr_legacy
rapidtide/scripts/showxcorrx
rapidtide/scripts/showxy
rapidtide/scripts/simdata
rapidtide/scripts/spatialdecomp
rapidtide/scripts/spatialfit
rapidtide/scripts/spatialmi
rapidtide/scripts/spectrogram
rapidtide/scripts/synthASL
rapidtide/scripts/tcfrom3col
rapidtide/scripts/temporaldecomp
rapidtide/scripts/threeD
rapidtide/scripts/variabilityizer
rapidtide/scripts/tidepool
#[versioneer]
#VCS = git
#style = pep440
#versionfile_source = rapidtide/_version.py
#versionfile_build = rapidtide/_version.py
#tag_prefix =
[flake8]
max-line-length = 99
exclude =
*build/
_version.py
rapidtide/disabledtests/
rapidtide/candidatetests/
putty-ignore =
*/__init__.py : +F401
ignore =
E203
E402
E501
E722
W503