created a simple setup.py file
[mw] / setup.py
diff --git a/setup.py b/setup.py
new file mode 100644 (file)
index 0000000..68816f0
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,14 @@
+#!/usr/bin/env python
+
+from distutils.core import setup
+
+setup(name='mw',
+      version='0.1',
+      description='VCS-like nonsense for MediaWiki websites',
+      author='Ian Weller',
+      author_email='ian@ianweller.org',
+      url='https://github.com/ianweller/mw',
+      package_dir = {'': 'src'},
+      packages=['mw'],
+      scripts=['bin/mw'])
+

Benjamin Mako Hill || Want to submit a patch?