##// 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:

r4924:113dc5b1
r5671:5d961317
Show More
setup.py
11 lines | 200 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""This calls the setup routine for Python 2 or 3 as required."""
import sys
if sys.version_info[0] >= 3:
from setup3 import main
else:
from setup2 import main
main()