created a simple setup.py file upstream
authorBenjamin Mako Hill <mako@atdot.cc>
Sun, 13 Feb 2011 02:26:54 +0000 (21:26 -0500)
committerBenjamin Mako Hill <mako@atdot.cc>
Sun, 13 Feb 2011 02:50:18 +0000 (21:50 -0500)
setup.py [new file with mode: 0644]

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?