File tree Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change 1111
1212import os
1313
14- # BEFORE importing distutils, remove MANIFEST. distutils doesn't properly
15- # update it when the contents of directories change.
16- if os .path .exists ('MANIFEST' ):
17- os .remove ('MANIFEST' )
18-
19- from setuptools import setup
14+ import setuptools
2015
2116# Commit hash writing
2217from nisext .sexts import get_comrec_build , read_vars_from
2318
2419INFO = read_vars_from (os .path .join ('nibabel' , 'info.py' ))
2520
2621if __name__ == "__main__" :
27- setup (name = 'nibabel' ,
28- version = INFO .VERSION ,
29- cmdclass = {'build_py' : get_comrec_build ('nibabel' )})
22+ setuptools .setup (name = 'nibabel' ,
23+ version = INFO .VERSION ,
24+ setup_requires = ['setuptools>=30.3.0' ],
25+ cmdclass = {'build_py' : get_comrec_build ('nibabel' )})
You can’t perform that action at this time.
0 commit comments