forked from Banno/getsentry-ldap-auth
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·47 lines (43 loc) · 1.57 KB
/
setup.py
File metadata and controls
executable file
·47 lines (43 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
"""
sentry-auth-ldap
================
An extension for Sentry which authenticates users from
an LDAP server and auto-adds them to an organization in sentry.
"""
from setuptools import setup, find_namespace_packages
with open("README.md", "r") as readme:
long_description = readme.read()
install_requires = [
'django-auth-ldap==4.1.0',
'sentry>=23.6.0',
]
setup(
name='sentry-auth-ldap',
version='24.8.2b1',
author='Chad Killingsworth <chad.killingsworth@banno.com>, Barron Hagerman <barron.hagerman@banno.com>, PM Extra <pm@jubeat.net>',
author_email='pm@jubeat.net',
url='https://github.com/PMExtra/sentry-auth-ldap',
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_namespace_packages(),
license='Apache-2.0',
zip_safe=False,
install_requires=install_requires,
include_package_data=True,
download_url='https://github.com/PMExtra/sentry-auth-ldap',
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development'
],
project_urls={
'Bug Tracker': 'https://github.com/PMExtra/sentry-auth-ldap/issues',
'CI': 'https://github.com/PMExtra/sentry-auth-ldap/actions',
'Source Code': 'https://github.com/PMExtra/sentry-auth-ldap',
},
)