update metadata

This commit is contained in:
Felix Lohmeier 2019-07-29 22:36:31 +02:00
parent aa844bde99
commit e03b3633e5
2 changed files with 9 additions and 8 deletions

View File

@ -1,4 +1,4 @@
include README.rst
include README.md
include COPYING.txt
recursive-include tests/data *.csv
recursive-include tests *.py

View File

@ -24,14 +24,15 @@ from setuptools import find_packages
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(name='refine-client',
version='0.2.1',
setup(name='openrefine-client',
version='0.3.4',
description=('The OpenRefine Python Client Library provides an '
'interface to communicating with an OpenRefine server.'),
long_description=read('README.rst'),
author='Paul Makepeace',
author_email='paulm@paulm.com',
url='https://github.com/PaulMakepeace/refine-client-py',
'interface to communicating with an OpenRefine server. '
'This fork extends the command line interface (CLI).'),
long_description=read('README.md'),
author='Felix Lohmeier',
author_email='felix.lohmeier@opencultureconsulting.com',
url='https://github.com/opencultureconsulting/openrefine-client',
packages=find_packages(exclude=['tests']),
install_requires=['urllib2_file'],
platforms=['Any'],