Merge pull request #1146 from mmargoliono/stage-selected-lines-on-untracked-file
[git-cola.git] / extras / sphinxtogithub / __init__.py
blob2a8284cd4e17bdb406d9ea1fffcb0a8a42d7607d
1 """Script for preparing the html output of the Sphinx documentation system for
2 github pages. """
3 # flake8: noqa
4 from __future__ import absolute_import, division, unicode_literals
6 VERSION = (1, 1, 0, 'dev')
8 __version__ = ".".join(map(str, VERSION[:-1]))
9 __release__ = ".".join(map(str, VERSION))
10 __author__ = "Michael Jones"
11 __contact__ = "http://github.com/michaeljones"
12 __homepage__ = "http://github.com/michaeljones/sphinx-to-github"
13 __docformat__ = "restructuredtext"
15 from .sphinxtogithub import (
16 setup,
17 sphinx_extension,
18 LayoutFactory,
19 Layout,
20 DirectoryHandler,
21 VerboseRename,
22 ForceRename,
23 Remover,
24 FileHandler,
25 Replacer,
26 DirHelper,
27 FileSystemHelper,
28 OperationsFactory,
29 HandlerFactory,