Menu

[r8174]: / branches / mathtex / release / win32 / data / setupwinegg.py  Maximize  Restore  History

Download this file

16 lines (12 with data), 356 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
from distutils import cygwinccompiler
try:
# Python 2.6
# Replace the msvcr func to return an empty list
cygwinccompiler.get_msvcr
cygwinccompiler.get_msvcr = lambda: []
except AttributeError:
pass
from setuptools import setup
execfile('setup.py',
{'additional_params' :
{'namespace_packages' : ['mpl_toolkits']}})