diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index b88034e..0000000 --- a/setup.cfg +++ /dev/null @@ -1,2 +0,0 @@ -[metadata] -description-file = README.md diff --git a/setup.py b/setup.py index 8552ce6..f1ee264 100755 --- a/setup.py +++ b/setup.py @@ -1,11 +1,16 @@ #!/usr/bin/env python -from setuptools import setup, find_packages +from setuptools import setup + +with open("README.md", "r") as fh: + long_description = fh.read() setup(name="pipelinewise-singer-python", version='1.0.0', description="Singer.io utility library - PipelineWise compatible", - author="Stitch", + long_description=long_description, + long_description_content_type="text/markdown", + author="TransferWise", classifiers=[ 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 3 :: Only'