forked from getsentry/sentry-auth-google
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from siemens/refactor/latest-sentry-auth-google
refactor: adapt to latest sentry-auth-google
- Loading branch information
Showing
9 changed files
with
140 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,5 @@ | |
*.eggs | ||
/dist | ||
/build | ||
venv | ||
.venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,41 +2,39 @@ | |
from __future__ import absolute_import | ||
from setuptools import setup, find_packages | ||
|
||
with open('README.rst') as readme_file: | ||
with open("README.rst") as readme_file: | ||
readme = readme_file.read() | ||
|
||
install_requires = [ | ||
'requests<3.0.0' | ||
] | ||
install_requires = ["requests<3.0.0", "six>=1.15.0"] | ||
|
||
tests_require = [ | ||
'flake8<3.6.0,>=3.5.0', | ||
"flake8<3.6.0,>=3.5.0", | ||
] | ||
|
||
setup( | ||
name='sentry-auth-oidc', | ||
version='3.0.0', | ||
author='Max Wittig', | ||
author_email='[email protected]', | ||
url='https://www.getsentry.com', | ||
description='OpenID Connect authentication provider for Sentry', | ||
name="sentry-auth-oidc", | ||
version="4.0.0", | ||
author="Max Wittig", | ||
author_email="[email protected]", | ||
url="https://www.getsentry.com", | ||
description="OpenID Connect authentication provider for Sentry", | ||
long_description=readme, | ||
license='Apache 2.0', | ||
packages=find_packages(exclude=['tests']), | ||
license="Apache 2.0", | ||
packages=find_packages(exclude=["tests"]), | ||
zip_safe=False, | ||
install_requires=install_requires, | ||
tests_require=tests_require, | ||
extras_require={'tests': tests_require}, | ||
extras_require={"tests": tests_require}, | ||
include_package_data=True, | ||
entry_points={ | ||
'sentry.apps': [ | ||
'oidc = oidc.apps.Config', | ||
"sentry.apps": [ | ||
"oidc = oidc.apps.Config", | ||
], | ||
}, | ||
classifiers=[ | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: System Administrators', | ||
'Operating System :: OS Independent', | ||
'Topic :: Software Development', | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: System Administrators", | ||
"Operating System :: OS Independent", | ||
"Topic :: Software Development", | ||
], | ||
) |
Empty file.
Oops, something went wrong.