mirror of
https://github.com/kennethreitz-archive/sphinx-to-github.git
synced 2026-06-05 23:40:17 +00:00
31 lines
694 B
Python
31 lines
694 B
Python
"""Script for preparing the html output of the Sphinx documentation system for
|
|
github pages. """
|
|
|
|
VERSION = (1, 0, 0, 'dev')
|
|
|
|
__version__ = ".".join(map(str, VERSION[:-1]))
|
|
__release__ = ".".join(map(str, VERSION))
|
|
__author__ = "Michael Jones"
|
|
__contact__ = "http://github.com/michaeljones"
|
|
__homepage__ = "http://github.com/michaeljones/sphinx-to-github"
|
|
__docformat__ = "restructuredtext"
|
|
|
|
from sphinxtogithub import (
|
|
setup,
|
|
sphinx_extension,
|
|
LayoutFactory,
|
|
Layout,
|
|
DirectoryHandler,
|
|
VerboseRename,
|
|
ForceRename,
|
|
Remover,
|
|
FileHandler,
|
|
Replacer,
|
|
DirHelper,
|
|
FileSystemHelper,
|
|
OperationsFactory,
|
|
HandlerFactory,
|
|
NoDirectoriesError,
|
|
)
|
|
|