Files
sphinx-to-github/sphinxtogithub/__init__.py
T

11 lines
389 B
Python

"""Script for preparing the html output of the Sphinx documentation system for
github pages. """
VERSION = (0, 9, 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"