summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--MANIFEST.in2
-rw-r--r--bugzilla/base.py2
-rw-r--r--setup.py1
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'])],
)