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',