We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab11581 commit 408854cCopy full SHA for 408854c
setup.py
@@ -119,6 +119,9 @@ def main():
119
with open(ver_file) as infofile:
120
exec(infofile.read(), globals(), ldict)
121
122
+ SETUP_REQUIRES = ['future']
123
+ if sys.version_info <= (3, 4):
124
+ SETUP_REQUIRES.append('configparser')
125
setup(
126
name=ldict['NAME'],
127
maintainer=ldict['MAINTAINER'],
@@ -134,14 +137,13 @@ def main():
134
137
platforms=ldict['PLATFORMS'],
135
138
version=ldict['VERSION'],
136
139
install_requires=ldict['REQUIRES'],
- setup_requires=['future', 'configparser'],
140
+ setup_requires=SETUP_REQUIRES,
141
provides=ldict['PROVIDES'],
142
packages=find_packages(),
143
package_data={'nipype': testdatafiles},
144
scripts=glob('bin/*'),
145
cmdclass={'build_py': BuildWithCommitInfoCommand},
146
tests_require=ldict['TESTS_REQUIRES'],
- test_suite='nose.collector',
147
zip_safe=False,
148
extras_require=ldict['EXTRA_REQUIRES'],
149
entry_points='''
setup_egg.py
0 commit comments