buildframework/helium/builder/tools/sphinx/sphinx-build.py
author Ross Qin <ross.qin@nokia.com>
Thu, 28 Oct 2010 11:18:50 +0800
changeset 667 a3b39a14147a
parent 587 85df38eb4012
permissions -rw-r--r--
Remove the PrintingServices component from TB10.1 on wards(on behalf of dane.waby@nokia.com)

#!python.exe
# EASY-INSTALL-ENTRY-SCRIPT: 'Sphinx==0.5.1','console_scripts','sphinx-build'
__requires__ = 'Sphinx==0.5.1'
import sys
from pkg_resources import load_entry_point

sys.exit(
   load_entry_point('Sphinx==0.5.1', 'console_scripts', 'sphinx-build')()
)