doc: update v3.3 release notes draft
[git-cola.git] / extras / sphinxtogithub / __init__.py
blobc82baa12a032a0274a1db69655f7c7ad1e5ba15b
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