Skip to content

Commit 3e7dd7f

Browse files
committed
update dependencies, minor fixes requested by satra
1 parent 41972c6 commit 3e7dd7f

File tree

1 file changed

+41
-39
lines changed

1 file changed

+41
-39
lines changed

nipype/info.py

Lines changed: 41 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -48,30 +48,29 @@ def get_nipype_gitversion():
4848
if gitversion:
4949
_version_extra = '-' + gitversion + '.dev'
5050

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,
5353
_version_minor,
5454
_version_micro,
5555
_version_extra)
5656

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']
6767

6868
description = 'Neuroimaging in Python: Pipelines and Interfaces'
6969

7070
# Note: this long_description is actually a copy/paste from the top-level
7171
# README.txt, so that it shows up nicely on PyPI. So please remember to edit
7272
# it only in one place and sync it correctly.
73-
long_description = """\
74-
========================================================
73+
long_description = """========================================================
7574
NIPYPE: Neuroimaging in Python: Pipelines and Interfaces
7675
========================================================
7776
@@ -115,48 +114,51 @@ def get_nipype_gitversion():
115114
PROV_MIN_VERSION = '1.4.0'
116115

117116
NAME = 'nipype'
118-
MAINTAINER = "nipype developers"
119-
MAINTAINER_EMAIL = "[email protected]"
117+
MAINTAINER = 'nipype developers'
118+
MAINTAINER_EMAIL = '[email protected]'
120119
DESCRIPTION = description
121120
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'
125124
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'
129128
MAJOR = _version_major
130129
MINOR = _version_minor
131130
MICRO = _version_micro
132131
ISRELEASE = _version_extra == ''
133132
VERSION = __version__
134133
PROVIDES = ['nipype']
135134
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'
147146
]
148147

149148
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'
154156
]
155157

156158
EXTRA_REQUIRES = {
157-
'doc': ['Sphinx>=0.3'],
159+
'doc': ['Sphinx>=0.3', 'matplotlib', 'pydotplus'],
158160
'tests': TESTS_REQUIRES,
159-
'fmri': ['nitime', 'nilearn'],
161+
'fmri': ['nitime', 'nilearn', 'dipy', 'nipy', 'matplotlib'],
160162
'profiler': ['psutil'],
161163
'duecredit': ['duecredit'],
162164
# 'mesh': ['mayavi'] # Enable when it works

0 commit comments

Comments
 (0)