From 13a31502fbd4a7423995cbdfa4d814f69619573c Mon Sep 17 00:00:00 2001 From: Will Woods Date: Fri, 19 Sep 2008 11:47:34 -0400 Subject: Get ready for rc3 - add man page --- MANIFEST.in | 2 +- bugzilla/base.py | 2 +- setup.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index ba370ea..285aa6c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1 @@ -include COPYING TODO README selftest.py MANIFEST.in +include COPYING TODO README selftest.py MANIFEST.in bugzilla.1 diff --git a/bugzilla/base.py b/bugzilla/base.py index 5aaeed7..3b07078 100644 --- a/bugzilla/base.py +++ b/bugzilla/base.py @@ -18,7 +18,7 @@ import os.path, base64 import logging log = logging.getLogger('bugzilla') -version = '0.4-rc2' +version = '0.4-rc3' user_agent = 'Python-urllib2/%s bugzilla.py/%s' % \ (urllib2.__version__,version) diff --git a/setup.py b/setup.py index 34fd88f..745126b 100644 --- a/setup.py +++ b/setup.py @@ -10,4 +10,5 @@ setup(name='python-bugzilla', url='http://wwoods.fedorapeople.org/python-bugzilla/', packages = ['bugzilla'], scripts=['bin/bugzilla'], + data_files=[('share/man/man1', ['bugzilla.1'])], ) -- cgit