We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c96972 commit 1a86904Copy full SHA for 1a86904
setup.py
@@ -12,8 +12,6 @@
12
13
"""
14
# Build helper
15
-import sys
16
-from glob import glob
17
import os
18
from os.path import join as pjoin
19
@@ -115,9 +113,6 @@ def main():
115
113
with open(ver_file) as infofile:
116
114
exec(infofile.read(), globals(), ldict)
117
118
- SETUP_REQUIRES = ["future"]
119
- if sys.version_info <= (3, 4):
120
- SETUP_REQUIRES.append("configparser")
121
setup(
122
name=ldict["NAME"],
123
maintainer=ldict["MAINTAINER"],
@@ -134,7 +129,6 @@ def main():
134
129
version=ldict["VERSION"],
135
130
python_requires=ldict["PYTHON_REQUIRES"],
136
131
install_requires=ldict["REQUIRES"],
137
- setup_requires=SETUP_REQUIRES,
138
132
provides=ldict["PROVIDES"],
139
133
packages=find_packages(),
140
package_data={"nipype": testdatafiles},
0 commit comments