From 1d715322f3ee6d46e085e817d262ea2ee2a65d02 Mon Sep 17 00:00:00 2001 From: Samira El Aabidi Date: Mon, 17 Feb 2020 16:59:44 +0200 Subject: [PATCH 1/2] bump version to v1.2.0 --- setup.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 34f8669..81f9586 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,18 @@ #!/usr/bin/env python from setuptools import setup +from os import path + +this_directory = path.abspath(path.dirname(__file__)) + +with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: + long_description = f.read() setup(name='pipelinewise-tap-mysql', - version='1.1.5', + version='1.2.0', description='Singer.io tap for extracting data from MySQL - PipelineWise compatible', + long_description=long_description, + long_description_content_type='text/markdown', author='Stitch', url='https://github.com/transferwise/pipelinewise-tap-mysql', classifiers=[ From c6866b8c49726c847ea815bd27782f0b7cd8d3f4 Mon Sep 17 00:00:00 2001 From: Samira El Aabidi Date: Mon, 17 Feb 2020 17:05:20 +0200 Subject: [PATCH 2/2] update setup.py --- setup.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 81f9586..17a3f3e 100644 --- a/setup.py +++ b/setup.py @@ -1,19 +1,16 @@ #!/usr/bin/env python from setuptools import setup -from os import path -this_directory = path.abspath(path.dirname(__file__)) - -with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: - long_description = f.read() +with open("README.md", "r") as fh: + long_description = fh.read() setup(name='pipelinewise-tap-mysql', version='1.2.0', description='Singer.io tap for extracting data from MySQL - PipelineWise compatible', long_description=long_description, long_description_content_type='text/markdown', - author='Stitch', + author='TransferWise', url='https://github.com/transferwise/pipelinewise-tap-mysql', classifiers=[ 'License :: OSI Approved :: GNU Affero General Public License v3',