From 35bb7754be1d843d6a91c9e84e698bbb6d7c63db Mon Sep 17 00:00:00 2001 From: Paul Makepeace Date: Thu, 28 Apr 2011 12:13:19 +0000 Subject: [PATCH] Add 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 0000000..bd27aba --- /dev/null +++ b/setup.py @@ -0,0 +1,13 @@ +#!/usr/bin/env python +"""python setup.py install""" + +from distutils.core import setup + +setup(name='refine-client-py', + version='0.1', + description='Google Refine Python Client', + author='Paul Makepeace', + author_email='paulm@paulm.com', + url='https://github.com/PaulMakepeace/refine-client-py', + packages=[], +) \ No newline at end of file