summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--MANIFEST.in1
-rw-r--r--setup.py12
2 files changed, 13 insertions, 0 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..9aca33d
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1 @@
+include COPYING TODO selftest.py MANIFEST.in
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'],
+)