File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change 12
12
13
13
"""
14
14
# Build helper
15
- import sys
16
- from glob import glob
17
15
import os
18
16
from os .path import join as pjoin
19
17
@@ -115,9 +113,6 @@ def main():
115
113
with open (ver_file ) as infofile :
116
114
exec (infofile .read (), globals (), ldict )
117
115
118
- SETUP_REQUIRES = ["future" ]
119
- if sys .version_info <= (3 , 4 ):
120
- SETUP_REQUIRES .append ("configparser" )
121
116
setup (
122
117
name = ldict ["NAME" ],
123
118
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
134
package_data = {"nipype" : testdatafiles },
You can’t perform that action at this time.
0 commit comments