openrefine-client/setup.py

37 lines
1.3 KiB
Python
Raw Normal View History

2011-04-28 14:13:19 +02:00
#!/usr/bin/env python
"""python setup.py install"""
import os
try:
from setuptools.core import setup
except ImportError:
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
2011-04-28 14:13:19 +02:00
setup(name='refine-client-py',
version='0.1.0',
description=('The Google Refine Python Client Library provides an '
'interface to communicating with a Google Refine server.'),
long_description=read('README.rst'),
2011-04-28 14:13:19 +02:00
author='Paul Makepeace',
author_email='paulm@paulm.com',
url='https://github.com/PaulMakepeace/refine-client-py',
packages=['google.refine'],
# XXX how do I include test/data/*.csv in setup.py sdist but not install it?
#package_data={'': ['tests/data/*.csv']},
install_requires=[
#'MultipartPostHandler', # for urllib2_file
],
platforms=['Any'],
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Library',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
test_suite='tests',
2011-04-28 14:13:19 +02:00
)