Skip to content

Commit 390d880

Browse files
committed
feat: Expose __version__ attribute
1 parent c3d0465 commit 390d880

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

oauth2_cli_auth/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Authenticate against OAuth2 Provider in Python CLIs
33
"""
4-
4+
from oauth2_cli_auth.__version__ import __version__
55
from oauth2_cli_auth.http_server import OAuthCallbackHttpServer
66
from oauth2_cli_auth.code_grant import OAuth2ClientInfo, exchange_code_for_access_token, get_auth_url, open_browser, load_oidc_config
77
from oauth2_cli_auth.simplified_flow import get_access_token_with_browser_open

oauth2_cli_auth/__version__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = "1.5.0"

0 commit comments

Comments
 (0)