Make 'python -m sphinx' possible

This commit is contained in:
anatoly techtonik 2014-02-12 01:14:55 +03:00
parent fc94bee009
commit 74c7a52eca

14
sphinx/__main__.py Normal file
View File

@ -0,0 +1,14 @@
# -*- coding: utf-8 -*-
"""
Sphinx
~~~~~~
The Sphinx documentation toolchain.
:copyright: Copyright 2007-2014 by the Sphinx team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
import sys
from sphinx import main
sys.exit(main(sys.argv))