From 398238c811d31ac6cc496dbb8e98171eea099029 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Mon, 3 Feb 2014 17:14:46 +0000 Subject: [PATCH] Added setup.py --- setup.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 000000000..b84711ac7 --- /dev/null +++ b/setup.py @@ -0,0 +1,13 @@ +#!/usr/bin/env python + +from distutils.core import setup + +setup( + name='Wagtail', + version='0.1', + description='Django-based content management system', + author='Matthew Westcott', + author_email='matthew.westcott@torchbox.com', + url='http://wagtail.io/', + packages=['wagtail'], +) \ No newline at end of file