File: __init__.py

package info (click to toggle)
git-cola 4.15.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 6,820 kB
  • sloc: python: 37,730; sh: 298; makefile: 223; xml: 104; tcl: 62
file content (28 lines) | stat: -rw-r--r-- 670 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
"""Script for preparing the html output of the Sphinx documentation system for
github pages. """

VERSION = (1, 1, 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,
)