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 include COPYING.txt
recursive-include tests/data *.csv recursive-include tests/data *.csv
recursive-include tests *.py recursive-include tests *.py

View File

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