From 172af190145ba13c6a1c4acb39dafca581bcb8ab Mon Sep 17 00:00:00 2001 From: Michael Stephens Date: Thu, 17 Jun 2010 11:26:13 -0400 Subject: [PATCH] skeleton setup.py --- setup.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..86e4775 --- /dev/null +++ b/setup.py @@ -0,0 +1,7 @@ +#!/usr/bin/env python +from setuptools import setup + +setup(name="saucebrush", + version='0.1', + packages=['saucebrush'], + )