X-Git-Url: https://projects.mako.cc/source/mw/blobdiff_plain/b9fb2a729cda6442da7aa4c2a9cdddd1b38a8409..8278ad042b1a95a8316e9bfb5a0161d59ec60cc7:/setup.py diff --git a/setup.py b/setup.py new file mode 100644 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']) +