summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorWill Woods <wwoods@redhat.com>2008-09-04 14:04:44 -0400
committerWill Woods <wwoods@redhat.com>2008-09-04 14:04:44 -0400
commitbcb002af27ee4a224be7578ded886471231e598e (patch)
treeda21e70d6243862417b99a7efff1786340ae64e9 /setup.py
parent041a27dbc66b007f2e4c7132c229f14af5163982 (diff)
parentce753c44a0445b796cd19851cba8dff2e5d455d0 (diff)
downloadpython-bugzilla-bcb002af27ee4a224be7578ded886471231e598e.tar.gz
python-bugzilla-bcb002af27ee4a224be7578ded886471231e598e.tar.xz
python-bugzilla-bcb002af27ee4a224be7578ded886471231e598e.zip
Merge from abstractify branch
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index c73b0e4..34fd88f 100644
--- a/setup.py
+++ b/setup.py
@@ -1,13 +1,13 @@
from distutils.core import setup
from glob import glob
-import bugzilla
+import bugzilla.base
setup(name='python-bugzilla',
- version=str(bugzilla.version),
+ version=str(bugzilla.base.version),
description='Bugzilla XMLRPC access module',
author='Will Woods',
author_email='wwoods@redhat.com',
url='http://wwoods.fedorapeople.org/python-bugzilla/',
- py_modules=['bugzilla'],
- scripts=['bugzilla'],
+ packages = ['bugzilla'],
+ scripts=['bin/bugzilla'],
)