Skip to content
This repository has been archived by the owner on Sep 24, 2023. It is now read-only.

Commit

Permalink
Update setup script (#40)
Browse files Browse the repository at this point in the history
* Updates the `long_description` to be read from the README so it will be rendered correctly with reStructuredText
* Corrects a typo in the description
  • Loading branch information
barronhagerman authored Sep 30, 2019
1 parent 8988634 commit b7e9b61
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -19,8 +22,9 @@
author='Chad Killingsworth <[email protected]>, Barron Hagerman <[email protected]>',
author_email='[email protected]',
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,
Expand Down

0 comments on commit b7e9b61

Please sign in to comment.