mirror of
https://github.com/kennethreitz-archive/sphinx-to-github.git
synced 2026-06-05 23:40:17 +00:00
11 lines
389 B
Python
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" |