##// END OF EJS Templates
Disable PDF manual building for distribution and installation....
Disable PDF manual building for distribution and installation. The PDF docs are huge, take forever to build and aren't particularly useful in practice being so unwieldy. We can always build and manually upload a static copy if there's demand, but they don't really serve much useful purpose anymore and bloat our downloads.

File last commit:

r2460:e8303d57
r4453:6c0e05de
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')