From 7088e20e470b94dc6ff19c99ed9f81ffc08843ab Mon Sep 17 00:00:00 2001 From: winhamwr Date: Sat, 19 Dec 2009 09:07:36 +0800 Subject: [PATCH] Added top-level objects from the sphinxtogithub package to __init__.py so that tests don't need to change their references --- sphinxtogithub/__init__.py | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/sphinxtogithub/__init__.py b/sphinxtogithub/__init__.py index 14fd907..26e828f 100644 --- a/sphinxtogithub/__init__.py +++ b/sphinxtogithub/__init__.py @@ -8,4 +8,18 @@ __release__ = ".".join(map(str, VERSION)) __author__ = "Michael Jones" __contact__ = "http://github.com/michaeljones" __homepage__ = "http://github.com/michaeljones/sphinx-to-github" -__docformat__ = "restructuredtext" \ No newline at end of file +__docformat__ = "restructuredtext" + +from sphinxtogithub import ( + setup, + sphinx_extension, + LayoutFactory, + Layout, + DirectoryHandler, + VerboseRename, + ForceRename, + Remover, + FileHandler, + Replacer, + NoDirectoriesError, +) \ No newline at end of file