Move build_manpage utility to doc area

Change-Id: I1f440d5be6eb7e14c8f8a5dfbcdcfcaa71ce1ef7
This commit is contained in:
Darragh Bailey 2016-10-25 12:39:08 +01:00
parent bc9fc649f6
commit ac76015552
2 changed files with 5 additions and 0 deletions

View File

@ -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)