##// END OF EJS Templates
extract svg tag from svg files...
extract svg tag from svg files We expect svg *tags*, not svg *documents*, which have headers, etc. This lets the SVG DisplayObject extract the svg tag from a document, so it works with regular svgs from a URL or file. closes #700

File last commit:

r2460:e8303d57
r5671:5d961317
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')