##// END OF EJS Templates
Improve setuptools support....
Fernando Perez -
Show More
@@ -159,6 +159,14 b' data_files = find_data_files()'
159 159 # Handle dependencies and setuptools specific things
160 160 #---------------------------------------------------------------------------
161 161
162 # For some commands, use setuptools. Note that we do NOT list install here!
163 # If you want a setuptools-enhanced install, just run 'setupegg.py install'
164 if len(set(('develop', 'sdist', 'release', 'bdist_egg', 'bdist_rpm',
165 'bdist', 'bdist_dumb', 'bdist_wininst', 'install_egg_info',
166 'build_sphinx', 'egg_info', 'easy_install', 'upload',
167 )).intersection(sys.argv)) > 0:
168 import setuptools
169
162 170 # This dict is used for passing extra arguments that are setuptools
163 171 # specific to setup
164 172 setuptools_extra_args = {}
General Comments 0
You need to be logged in to leave comments. Login now