##// END OF EJS Templates
Merge pull request #1445 from minrk/nosphinx...
Merge pull request #1445 from minrk/nosphinx Don't build sphinx docs for sdists, it makes our source distributions unnecessarily large (and their generation much slower). Online access to docs is pervasive these days, and our docs are also much easier to build now, reducing the justification for keeping built docs in the source download.

File last commit:

r2460:e8303d57
r6445:11feaa28 merge
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')