@@ -48,30 +48,29 @@ def get_nipype_gitversion():
48
48
if gitversion :
49
49
_version_extra = '-' + gitversion + '.dev'
50
50
51
- # Format expected by setup.py and doc/source/conf.py: string of form " X.Y.Z"
52
- __version__ = " %s.%s.%s%s" % (_version_major ,
51
+ # Format expected by setup.py and doc/source/conf.py: string of form ' X.Y.Z'
52
+ __version__ = ' %s.%s.%s%s' % (_version_major ,
53
53
_version_minor ,
54
54
_version_micro ,
55
55
_version_extra )
56
56
57
- CLASSIFIERS = [" Development Status :: 5 - Production/Stable" ,
58
- " Environment :: Console" ,
59
- " Intended Audience :: Science/Research" ,
60
- " License :: OSI Approved :: Apache Software License" ,
61
- " Operating System :: MacOS :: MacOS X" ,
62
- " Operating System :: POSIX :: Linux" ,
63
- " Programming Language :: Python :: 2.7" ,
64
- " Programming Language :: Python :: 3.4" ,
65
- " Programming Language :: Python :: 3.5" ,
66
- " Topic :: Scientific/Engineering" ]
57
+ CLASSIFIERS = [' Development Status :: 5 - Production/Stable' ,
58
+ ' Environment :: Console' ,
59
+ ' Intended Audience :: Science/Research' ,
60
+ ' License :: OSI Approved :: Apache Software License' ,
61
+ ' Operating System :: MacOS :: MacOS X' ,
62
+ ' Operating System :: POSIX :: Linux' ,
63
+ ' Programming Language :: Python :: 2.7' ,
64
+ ' Programming Language :: Python :: 3.4' ,
65
+ ' Programming Language :: Python :: 3.5' ,
66
+ ' Topic :: Scientific/Engineering' ]
67
67
68
68
description = 'Neuroimaging in Python: Pipelines and Interfaces'
69
69
70
70
# Note: this long_description is actually a copy/paste from the top-level
71
71
# README.txt, so that it shows up nicely on PyPI. So please remember to edit
72
72
# it only in one place and sync it correctly.
73
- long_description = """\
74
- ========================================================
73
+ long_description = """========================================================
75
74
NIPYPE: Neuroimaging in Python: Pipelines and Interfaces
76
75
========================================================
77
76
@@ -115,48 +114,51 @@ def get_nipype_gitversion():
115
114
PROV_MIN_VERSION = '1.4.0'
116
115
117
116
NAME = 'nipype'
118
- MAINTAINER = " nipype developers"
119
- MAINTAINER_EMAIL = " [email protected] "
117
+ MAINTAINER = ' nipype developers'
118
+ MAINTAINER_EMAIL = ' [email protected] '
120
119
DESCRIPTION = description
121
120
LONG_DESCRIPTION = long_description
122
- URL = " http://nipy.org/nipype"
123
- DOWNLOAD_URL = " http://github.com/nipy/nipype/archives/master"
124
- LICENSE = " Apache License, 2.0"
121
+ URL = ' http://nipy.org/nipype'
122
+ DOWNLOAD_URL = ' http://github.com/nipy/nipype/archives/master'
123
+ LICENSE = ' Apache License, 2.0'
125
124
CLASSIFIERS = CLASSIFIERS
126
- AUTHOR = " nipype developers"
127
- AUTHOR_EMAIL = " [email protected] "
128
- PLATFORMS = " OS Independent"
125
+ AUTHOR = ' nipype developers'
126
+ AUTHOR_EMAIL = ' [email protected] '
127
+ PLATFORMS = ' OS Independent'
129
128
MAJOR = _version_major
130
129
MINOR = _version_minor
131
130
MICRO = _version_micro
132
131
ISRELEASE = _version_extra == ''
133
132
VERSION = __version__
134
133
PROVIDES = ['nipype' ]
135
134
REQUIRES = [
136
- " nibabel>=%s" % NIBABEL_MIN_VERSION ,
137
- " networkx>=%s" % NETWORKX_MIN_VERSION ,
138
- " numpy>=%s" % NUMPY_MIN_VERSION ,
139
- " python-dateutil>=%s" % DATEUTIL_MIN_VERSION ,
140
- " scipy>=%s" % SCIPY_MIN_VERSION ,
141
- " traits>=%s" % TRAITS_MIN_VERSION ,
142
- " future>=%s" % FUTURE_MIN_VERSION ,
143
- " simplejson>=%s" % SIMPLEJSON_MIN_VERSION ,
144
- " prov>=%s" % PROV_MIN_VERSION ,
145
- " xvfbwrapper" ,
146
- " funcsigs"
135
+ ' nibabel>=%s' % NIBABEL_MIN_VERSION ,
136
+ ' networkx>=%s' % NETWORKX_MIN_VERSION ,
137
+ ' numpy>=%s' % NUMPY_MIN_VERSION ,
138
+ ' python-dateutil>=%s' % DATEUTIL_MIN_VERSION ,
139
+ ' scipy>=%s' % SCIPY_MIN_VERSION ,
140
+ ' traits>=%s' % TRAITS_MIN_VERSION ,
141
+ ' future>=%s' % FUTURE_MIN_VERSION ,
142
+ ' simplejson>=%s' % SIMPLEJSON_MIN_VERSION ,
143
+ ' prov>=%s' % PROV_MIN_VERSION ,
144
+ ' xvfbwrapper' ,
145
+ ' funcsigs'
147
146
]
148
147
149
148
TESTS_REQUIRES = [
150
- "nose>=%s" % NOSE_MIN_VERSION ,
151
- "mock" ,
152
- "codecov" ,
153
- "doctest-ignore-unicode"
149
+ 'nose>=%s' % NOSE_MIN_VERSION ,
150
+ 'mock' ,
151
+ 'codecov' ,
152
+ 'doctest-ignore-unicode' ,
153
+ 'dipy' ,
154
+ 'nipy' ,
155
+ 'matplotlib'
154
156
]
155
157
156
158
EXTRA_REQUIRES = {
157
- 'doc' : ['Sphinx>=0.3' ],
159
+ 'doc' : ['Sphinx>=0.3' , 'matplotlib' , 'pydotplus' ],
158
160
'tests' : TESTS_REQUIRES ,
159
- 'fmri' : ['nitime' , 'nilearn' ],
161
+ 'fmri' : ['nitime' , 'nilearn' , 'dipy' , 'nipy' , 'matplotlib' ],
160
162
'profiler' : ['psutil' ],
161
163
'duecredit' : ['duecredit' ],
162
164
# 'mesh': ['mayavi'] # Enable when it works
0 commit comments