From ac760155529a02a6760614095b897006b98fdaad Mon Sep 17 00:00:00 2001 From: Darragh Bailey Date: Tue, 25 Oct 2016 12:39:08 +0100 Subject: [PATCH] Move build_manpage utility to doc area Change-Id: I1f440d5be6eb7e14c8f8a5dfbcdcfcaa71ce1ef7 --- build_manpage.py => doc/utils/build_manpage.py | 0 setup.py | 5 +++++ 2 files changed, 5 insertions(+) rename build_manpage.py => doc/utils/build_manpage.py (100%) diff --git a/build_manpage.py b/doc/utils/build_manpage.py similarity index 100% rename from build_manpage.py rename to doc/utils/build_manpage.py diff --git a/setup.py b/setup.py index 6053675..ead5519 100644 --- a/setup.py +++ b/setup.py @@ -14,9 +14,14 @@ # See the License for the specific language governing permissions and # limitations under the License. +import os import setuptools +import sys +# build_manpage command added under doc/utils +sys.path.insert(0, os.path.abspath('./doc/utils')) + setuptools.setup( setup_requires=['pbr'], pbr=True)