diff --git a/setup.py b/setup.py index 2a32a59..219e189 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-salesforce', version='1.0.0', description='Singer.io tap for extracting data from the Salesforce API - PipelineWise compatible', + long_description=long_description, + long_description_content_type='text/markdown', # This is important! author='Stitch', url='https://github.com/transferwise/pipelinewise-tap-salesforce', classifiers=['Programming Language :: Python :: 3 :: Only'],