ó
mÜJ]c           @` sl   d  Z  d d l m Z m Z m Z m Z d d l Z e j e ƒ Z	 d Z
 d „  Z e d k rh e ƒ  n  d S(   uÞ    Enable execution of the "bokeh" command line program with the ``-m``
switch. For example:

.. code-block:: sh

    python -m bokeh serve --show app.py

is equivalent to

.. code-block:: sh

    bokeh serve --show app.py

i    (   t   absolute_importt   divisiont   print_functiont   unicode_literalsNu   mainc          C` s-   d d l  }  d d l m } | |  j ƒ d S(   u0    Execute the "bokeh" command line program.

    i    N(   t   main(   t   syst   bokeh.command.bootstrapR   t   argv(   R   t   _main(    (    s-   lib/python2.7/site-packages/bokeh/__main__.pyR   8   s    u   __main__(   u   main(   t   __doc__t
   __future__R    R   R   R   t   loggingt	   getLoggert   __name__t   logt   __all__R   (    (    (    s-   lib/python2.7/site-packages/bokeh/__main__.pyt   <module>   s   "	