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

Fix setup script #40

Merged
merged 1 commit into from
Sep 30, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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