buildframework/helium/builder/tools/sphinx/sphinx-build.py
author marvin shi <marvin.shi@nokia.com>
Wed, 17 Nov 2010 14:41:23 +0800
changeset 692 1dfff72f0961
parent 587 85df38eb4012
permissions -rw-r--r--
fix ou1cimx1#651819
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     1
#!python.exe
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     2
# EASY-INSTALL-ENTRY-SCRIPT: 'Sphinx==0.5.1','console_scripts','sphinx-build'
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     3
__requires__ = 'Sphinx==0.5.1'
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     4
import sys
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     5
from pkg_resources import load_entry_point
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     6
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     7
sys.exit(
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     8
   load_entry_point('Sphinx==0.5.1', 'console_scripts', 'sphinx-build')()
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     9
)