##// END OF EJS Templates
allow change of PNG DPI in inline backend...
allow change of PNG DPI in inline backend This moves setting the DPI to the rcParams initialization, so that it can be changed later by the user, setting `rcParams['savefig.figsize']`. DPI has no effect on SVG figures, so any other value will result in mismatch between svg and png figures.

File last commit:

r2460:e8303d57
r5292:16e17715
Show More
setupegg.py
6 lines | 156 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
# Import setuptools and call the actual setup
import setuptools
execfile('setup.py')