__init__.py (386B)
1 # -*- coding: utf-8 -*- 2 """ 3 sphinxcontrib 4 ~~~~~~~~~~~~~ 5 6 This package is a namespace package that contains all extensions 7 distributed in the ``sphinx-contrib`` distribution. 8 9 :copyright: Copyright 2007-2009 by the Sphinx team, see AUTHORS. 10 :license: BSD, see LICENSE for details. 11 """ 12 13 from pkgutil import extend_path 14 15 16 __path__ = extend_path(__path__, __name__)