diff --git a/setup.py b/setup.py index e7ad5bf..8e2175e 100644 --- a/setup.py +++ b/setup.py @@ -2,9 +2,14 @@ from setuptools import setup +with open('README.md') as f: + long_description = f.read() + setup(name='pipelinewise-tap-snowflake', version='1.0.2', description='Singer.io tap for extracting data from Snowflake - PipelineWise compatible', + long_description=long_description, + long_description_content_type='text/markdown', author="TransferWise", url='https://github.com/transferwise/pipelinewise-tap-postgres', classifiers=['Programming Language :: Python :: 3 :: Only'],