Add setup.py

This commit is contained in:
Paul Makepeace 2011-04-28 12:13:19 +00:00
parent e03b3913b4
commit 35bb7754be
1 changed files with 13 additions and 0 deletions

13
setup.py Normal file
View File

@ -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=[],
)