X-Git-Url: https://projects.mako.cc/source/mw/blobdiff_plain/e4ca6107fdb72b690cef9e6bacf438c5278d00b7..058baef879cb546273afcd57b87cee5ed45a77b1:/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']) +