diff options
| author | Will Woods <wwoods@redhat.com> | 2008-09-04 14:04:44 -0400 |
|---|---|---|
| committer | Will Woods <wwoods@redhat.com> | 2008-09-04 14:04:44 -0400 |
| commit | bcb002af27ee4a224be7578ded886471231e598e (patch) | |
| tree | da21e70d6243862417b99a7efff1786340ae64e9 /setup.py | |
| parent | 041a27dbc66b007f2e4c7132c229f14af5163982 (diff) | |
| parent | ce753c44a0445b796cd19851cba8dff2e5d455d0 (diff) | |
| download | python-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.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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'], ) |
