diff --git a/setup.py b/setup.py index ddf5d36..7dd0724 100755 --- a/setup.py +++ b/setup.py @@ -8,6 +8,9 @@ """ from setuptools import setup, find_packages +with open("README.md", "r") as readme: + long_description = readme.read() + install_requires = [ 'django-auth-ldap==1.2.*', 'sentry>=8.0.0', @@ -19,8 +22,9 @@ author='Chad Killingsworth , Barron Hagerman ', author_email='chad.killingsworth@banno.com', url='http://github.com/banno/getsentry-ldap-auth', - description='A Sentry extension to add an LDAP server as an authention source.', - long_description=__doc__, + description='A Sentry extension to add an LDAP server as an authentication source.', + long_description=long_description, + long_description_content_type='text/markdown', packages=find_packages(), license='Apache-2.0', zip_safe=False,