From e03b3633e50927780f98f05dc95752068d20c0ec Mon Sep 17 00:00:00 2001 From: Felix Lohmeier Date: Mon, 29 Jul 2019 22:36:31 +0200 Subject: [PATCH] update metadata --- MANIFEST.in | 2 +- setup.py | 15 ++++++++------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 87c6402..f464c19 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ -include README.rst +include README.md include COPYING.txt recursive-include tests/data *.csv recursive-include tests *.py diff --git a/setup.py b/setup.py index 2387be7..99381ca 100644 --- a/setup.py +++ b/setup.py @@ -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'],