From 8278ad042b1a95a8316e9bfb5a0161d59ec60cc7 Mon Sep 17 00:00:00 2001 From: Benjamin Mako Hill Date: Sat, 12 Feb 2011 21:26:54 -0500 Subject: [PATCH] created a simple setup.py file --- setup.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 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']) + -- 2.30.2