summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWill Woods <wwoods@redhat.com>2007-11-05 16:53:12 -0500
committerWill Woods <wwoods@redhat.com>2007-11-05 16:53:12 -0500
commit8dd185ed847b6ce7d77ea1368c76654d9dda2edc (patch)
tree3ca6db965a717fc9610d693f9b648028ded91015
parentb5c728a23ae07cbd41dacd83057901ce0c20570c (diff)
downloadpython-bugzilla-8dd185ed847b6ce7d77ea1368c76654d9dda2edc.tar.gz
python-bugzilla-8dd185ed847b6ce7d77ea1368c76654d9dda2edc.tar.xz
python-bugzilla-8dd185ed847b6ce7d77ea1368c76654d9dda2edc.zip
fix some packaging junk, clarify README a bit
-rw-r--r--README6
-rw-r--r--setup.py4
2 files changed, 5 insertions, 5 deletions
diff --git a/README b/README
index 6e3da9b..99e399a 100644
--- a/README
+++ b/README
@@ -3,10 +3,10 @@ over XMLRPC.
Currently it targets Red Hat's xmlrpc services, because:
a) That's what the Fedora project uses, and
-b) It's a lot richer than the Bugzilla 3.0 web services API.
+b) Even if it is ugly, it's got more methods than the Bugzilla 3.0 API
-In the near future (see TODO) we will support the Bugzilla 3.0 API, although
-it may not support all the same methods as the RHBugzilla class.
+In the near future (see TODO) we may support the Bugzilla 3.0 API, although
+it probably won't not support all the same methods as the RHBugzilla class.
In the long-term future, Red Hat is planning on porting their interfaces to
the Bugzilla 3.0 framework and contributing them to upstream Bugzilla, so in
diff --git a/setup.py b/setup.py
index 322293b..c73b0e4 100644
--- a/setup.py
+++ b/setup.py
@@ -2,12 +2,12 @@ from distutils.core import setup
from glob import glob
import bugzilla
-setup(name='bugzilla',
+setup(name='python-bugzilla',
version=str(bugzilla.version),
description='Bugzilla XMLRPC access module',
author='Will Woods',
author_email='wwoods@redhat.com',
- url='http://localhost/',
+ url='http://wwoods.fedorapeople.org/python-bugzilla/',
py_modules=['bugzilla'],
scripts=['bugzilla'],
)