forked from getsentry/sentry-auth-saml2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (44 loc) · 1.24 KB
/
setup.py
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
48
#!/usr/bin/env python
"""
sentry-auth-saml2
=================
"""
from setuptools import setup, find_packages
install_requires = [
'python3-saml>=1.2.3'
]
tests_require = [
'flake8>=2.0,<2.1',
]
setup(
name='sentry-auth-saml2',
version='0.1.0.dev',
author='Sentry',
author_email='[email protected]',
url='https://www.getsentry.com',
description='SAML SSO provider for Sentry',
long_description=__doc__,
license='Apache 2.0',
package_dir={'': 'src'},
packages=find_packages('src', exclude=['tests']),
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
extras_require={'tests': tests_require},
include_package_data=True,
entry_points={
'sentry.apps': [
'auth_saml2 = sentry_auth_saml2.generic',
'auth_onelogin = sentry_auth_saml2.onelogin',
'auth_okta = sentry_auth_saml2.okta',
'auth_auth0 = sentry_auth_saml2.auth0',
'auth_rippling = sentry_auth_saml2.rippling',
],
},
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)