diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..ea7e416 --- /dev/null +++ b/setup.py @@ -0,0 +1,12 @@ +from distutils.core import setup +from glob import glob +import bugzilla + +setup(name='bugzilla', + version=str(bugzilla.version), + description='Bugzilla XMLRPC access module', + author='Will Woods', + author_email='wwoods@redhat.com', + url='http://localhost/', + py_modules=['bugzilla'], +) |