Skip to content

Commit

Permalink
Add comments about optional dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Apr 5, 2023
1 parent 4e30ad8 commit 22d7dd3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,18 @@ def run(self):


setup_args['extras_require'] = {
# azuread is required for use of AzureADOAuthenticator
'azuread': ['pyjwt>=2'],
# googlegroups is required for use of GoogleOAuthenticator configured with
# either admin_google_groups and/or allowed_google_groups.
'googlegroups': [
'google-api-python-client',
'google-auth-oauthlib',
],
# mediawiki is required for use of MWOAuthenticator
'mediawiki': ['mwoauth>=0.3.8'],
# test is required to run tests, and includes all authenticator specific
# dependencies above.
'test': [
'pytest>=2.8',
'pytest-asyncio',
Expand Down

0 comments on commit 22d7dd3

Please sign in to comment.