chore: 添加虚拟环境到仓库

- 添加 backend_service/venv 虚拟环境
- 包含所有Python依赖包
- 注意:虚拟环境约393MB,包含12655个文件
This commit is contained in:
2025-12-03 10:19:25 +08:00
parent a6c2027caa
commit c4f851d387
12655 changed files with 3009376 additions and 0 deletions

View File

@@ -0,0 +1,181 @@
Metadata-Version: 2.4
Name: google-auth
Version: 2.43.0
Summary: Google Authentication Library
Home-page: https://github.com/googleapis/google-auth-library-python
Author: Google Cloud Platform
Author-email: googleapis-packages@google.com
License: Apache 2.0
Keywords: google auth oauth client
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Python: >=3.7
License-File: LICENSE
Requires-Dist: cachetools<7.0,>=2.0.0
Requires-Dist: pyasn1-modules>=0.2.1
Requires-Dist: rsa<5,>=3.1.4
Provides-Extra: aiohttp
Requires-Dist: aiohttp<4.0.0,>=3.6.2; extra == "aiohttp"
Requires-Dist: requests<3.0.0,>=2.20.0; extra == "aiohttp"
Provides-Extra: enterprise-cert
Requires-Dist: cryptography; extra == "enterprise-cert"
Requires-Dist: pyopenssl; extra == "enterprise-cert"
Provides-Extra: pyopenssl
Requires-Dist: pyopenssl>=20.0.0; extra == "pyopenssl"
Requires-Dist: cryptography>=38.0.3; extra == "pyopenssl"
Requires-Dist: cryptography<39.0.0; python_version < "3.8" and extra == "pyopenssl"
Provides-Extra: pyjwt
Requires-Dist: pyjwt>=2.0; extra == "pyjwt"
Requires-Dist: cryptography>=38.0.3; extra == "pyjwt"
Requires-Dist: cryptography<39.0.0; python_version < "3.8" and extra == "pyjwt"
Provides-Extra: reauth
Requires-Dist: pyu2f>=0.1.5; extra == "reauth"
Provides-Extra: requests
Requires-Dist: requests<3.0.0,>=2.20.0; extra == "requests"
Provides-Extra: testing
Requires-Dist: grpcio; extra == "testing"
Requires-Dist: flask; extra == "testing"
Requires-Dist: freezegun; extra == "testing"
Requires-Dist: mock; extra == "testing"
Requires-Dist: oauth2client; extra == "testing"
Requires-Dist: pyjwt>=2.0; extra == "testing"
Requires-Dist: cryptography>=38.0.3; extra == "testing"
Requires-Dist: cryptography<39.0.0; python_version < "3.8" and extra == "testing"
Requires-Dist: pytest; extra == "testing"
Requires-Dist: pytest-cov; extra == "testing"
Requires-Dist: pytest-localserver; extra == "testing"
Requires-Dist: pyopenssl>=20.0.0; extra == "testing"
Requires-Dist: cryptography>=38.0.3; extra == "testing"
Requires-Dist: cryptography<39.0.0; python_version < "3.8" and extra == "testing"
Requires-Dist: pyu2f>=0.1.5; extra == "testing"
Requires-Dist: responses; extra == "testing"
Requires-Dist: urllib3; extra == "testing"
Requires-Dist: packaging; extra == "testing"
Requires-Dist: aiohttp<4.0.0,>=3.6.2; extra == "testing"
Requires-Dist: requests<3.0.0,>=2.20.0; extra == "testing"
Requires-Dist: aioresponses; extra == "testing"
Requires-Dist: pytest-asyncio; extra == "testing"
Requires-Dist: pyopenssl<24.3.0; extra == "testing"
Requires-Dist: aiohttp<3.10.0; extra == "testing"
Provides-Extra: urllib3
Requires-Dist: urllib3; extra == "urllib3"
Requires-Dist: packaging; extra == "urllib3"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary
Google Auth Python Library
==========================
|pypi|
This library simplifies using Google's various server-to-server authentication
mechanisms to access Google APIs.
.. |pypi| image:: https://img.shields.io/pypi/v/google-auth.svg
:target: https://pypi.python.org/pypi/google-auth
Installing
----------
You can install using `pip`_::
$ pip install google-auth
.. _pip: https://pip.pypa.io/en/stable/
For more information on setting up your Python development environment, please refer to `Python Development Environment Setup Guide`_ for Google Cloud Platform.
.. _`Python Development Environment Setup Guide`: https://cloud.google.com/python/docs/setup
Extras
------
google-auth has few extras that you can install. For example::
$ pip install google-auth[pyopenssl]
Note that the extras pyopenssl and enterprise_cert should not be used together because they use conflicting versions of `cryptography`_.
.. _`cryptography`: https://cryptography.io/en/latest/
Supported Python Versions
^^^^^^^^^^^^^^^^^^^^^^^^^
Python >= 3.7
**NOTE**:
Python 3.7 was marked as `unsupported`_ by the python community in June 2023.
We recommend that all developers upgrade to Python 3.8 and newer as soon as
they can. Support for Python 3.7 will be removed from this library after
January 1 2024. Previous releases that support Python 3.7 will continue to be available
for download, but releases after January 1 2024 will only target Python 3.8 and
newer.
.. _unsupported: https://devguide.python.org/versions/#unsupported-versions
Unsupported Python Versions
^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Python == 2.7: The last version of this library with support for Python 2.7
was `google.auth == 1.34.0`.
- Python 3.5: The last version of this library with support for Python 3.5
was `google.auth == 1.23.0`.
- Python 3.6: The last version of this library with support for Python 3.6
was `google.auth == 2.22.0`.
Documentation
-------------
Google Auth Python Library has usage and reference documentation at https://googleapis.dev/python/google-auth/latest/index.html.
Current Maintainers
-------------------
- googleapis-auth@google.com
Authors
-------
- `@theacodes <https://github.com/theacodes>`_ (Thea Flowers)
- `@dhermes <https://github.com/dhermes>`_ (Danny Hermes)
- `@lukesneeringer <https://github.com/lukesneeringer>`_ (Luke Sneeringer)
- `@busunkim96 <https://github.com/busunkim96>`_ (Bu Sun Kim)
Contributing
------------
Contributions to this library are always welcome and highly encouraged.
See `CONTRIBUTING.rst`_ for more information on how to get started.
.. _CONTRIBUTING.rst: https://github.com/googleapis/google-auth-library-python/blob/main/CONTRIBUTING.rst
License
-------
Apache 2.0 - See `the LICENSE`_ for more information.
.. _the LICENSE: https://github.com/googleapis/google-auth-library-python/blob/main/LICENSE

View File

@@ -0,0 +1,154 @@
google/auth/__init__.py,sha256=wg5MWwRk8nfJFMmUMU2gLirrPdGe9NMwqLkdSwdFwE8,1639
google/auth/__pycache__/__init__.cpython-313.pyc,,
google/auth/__pycache__/_cloud_sdk.cpython-313.pyc,,
google/auth/__pycache__/_constants.cpython-313.pyc,,
google/auth/__pycache__/_credentials_async.cpython-313.pyc,,
google/auth/__pycache__/_credentials_base.cpython-313.pyc,,
google/auth/__pycache__/_default.cpython-313.pyc,,
google/auth/__pycache__/_default_async.cpython-313.pyc,,
google/auth/__pycache__/_exponential_backoff.cpython-313.pyc,,
google/auth/__pycache__/_helpers.cpython-313.pyc,,
google/auth/__pycache__/_jwt_async.cpython-313.pyc,,
google/auth/__pycache__/_oauth2client.cpython-313.pyc,,
google/auth/__pycache__/_refresh_worker.cpython-313.pyc,,
google/auth/__pycache__/_service_account_info.cpython-313.pyc,,
google/auth/__pycache__/api_key.cpython-313.pyc,,
google/auth/__pycache__/app_engine.cpython-313.pyc,,
google/auth/__pycache__/aws.cpython-313.pyc,,
google/auth/__pycache__/credentials.cpython-313.pyc,,
google/auth/__pycache__/downscoped.cpython-313.pyc,,
google/auth/__pycache__/environment_vars.cpython-313.pyc,,
google/auth/__pycache__/exceptions.cpython-313.pyc,,
google/auth/__pycache__/external_account.cpython-313.pyc,,
google/auth/__pycache__/external_account_authorized_user.cpython-313.pyc,,
google/auth/__pycache__/iam.cpython-313.pyc,,
google/auth/__pycache__/identity_pool.cpython-313.pyc,,
google/auth/__pycache__/impersonated_credentials.cpython-313.pyc,,
google/auth/__pycache__/jwt.cpython-313.pyc,,
google/auth/__pycache__/metrics.cpython-313.pyc,,
google/auth/__pycache__/pluggable.cpython-313.pyc,,
google/auth/__pycache__/version.cpython-313.pyc,,
google/auth/_cloud_sdk.py,sha256=u7tbE3KdHBCzZK8ka47xG3CHHtF0DhFDjmPSgz8lwXg,5212
google/auth/_constants.py,sha256=fP9ktmfDQGKEGMdsNvp_r9Uxb18D83cehNhlXDSI2Eo,538
google/auth/_credentials_async.py,sha256=bHB28wMULOIEMmYqKEOU06A4co7uIXPcnfVC_TaA6KY,6802
google/auth/_credentials_base.py,sha256=KxdCZyoFyvrfWhJbNnuYkpUhxs0bmbxYvcH8-xp5hUs,2692
google/auth/_default.py,sha256=27y3xffTVc7WmcCl5CbV6KlnUdWVgrjE_v5TnrgewU8,31007
google/auth/_default_async.py,sha256=ZkU8jig_lEb_IpsYT8DBzNPLRGgfYNb_QbL0S3lpjks,11848
google/auth/_exponential_backoff.py,sha256=qxA9ek80rBkoARx0Egl2b1MlYU0D-pQNVqgCmUh-lgU,5372
google/auth/_helpers.py,sha256=78PHRJSXrHVT4z_0_ior1Ejt06zlQn8NeVpE0am9w44,17761
google/auth/_jwt_async.py,sha256=5mGab5CkdnBMkQkS4mtNkwFkktp1jBw6G1sYQk8bYKY,5972
google/auth/_oauth2client.py,sha256=hPxcl_8q6Oxr0hOHPUWaWObxI85Pv-0q6kZhRUrT5oY,5855
google/auth/_refresh_worker.py,sha256=7apJkFsD9oL1yz1K7O8v-YN3f3TdNBiJdd7_Wmq6zpE,3375
google/auth/_service_account_info.py,sha256=KGruc_OxS7O7_EADD4JEIjjz_-5Xa1_rlgk1t0p1nvk,2816
google/auth/aio/__init__.py,sha256=e3ToAxXNHhqJLBgW8B66650xdqrTCZDLcwP2p5DhCPM,869
google/auth/aio/__pycache__/__init__.cpython-313.pyc,,
google/auth/aio/__pycache__/_helpers.cpython-313.pyc,,
google/auth/aio/__pycache__/credentials.cpython-313.pyc,,
google/auth/aio/_helpers.py,sha256=glCa_-GYxDrcPBFt80LBhMz_V7vLjxAEEWfOZB8lwT0,2334
google/auth/aio/credentials.py,sha256=lXY0_SJ9c36Mzp47fN4a8JT5HfNzFQtIIwsZEwzoDR4,5273
google/auth/aio/transport/__init__.py,sha256=8dQWHpube1IeWw02q6AvMRTM5V_2iN4y3UMLenbmUUQ,4692
google/auth/aio/transport/__pycache__/__init__.cpython-313.pyc,,
google/auth/aio/transport/__pycache__/aiohttp.cpython-313.pyc,,
google/auth/aio/transport/__pycache__/sessions.cpython-313.pyc,,
google/auth/aio/transport/aiohttp.py,sha256=sg3bdyCsoJ0N0v7Ww8qoJFr0qcF6TKhEmNw5dRb6R9I,6979
google/auth/aio/transport/sessions.py,sha256=RcRHfkeo_ppEY1o8ts8aJqw76y54I8D0P8QT7yFq4aI,10388
google/auth/api_key.py,sha256=PeieTYceHJIFCo0zQo1EA9NEDL_Ie6S78qmD-6Ig17s,2583
google/auth/app_engine.py,sha256=LuEaoWM1UwcIUJ6OrLza0tTpqJBXbtzZ3XjN0C-6Wvk,6121
google/auth/aws.py,sha256=2V5NLhboorkPLLwnA87VuyH9imruake6qhyHKV_rVYM,34568
google/auth/compute_engine/__init__.py,sha256=BqeTka-oyHFATkys3SGKRlOyWQ8mVV0vVaP2hOwV4Qw,910
google/auth/compute_engine/__pycache__/__init__.cpython-313.pyc,,
google/auth/compute_engine/__pycache__/_metadata.cpython-313.pyc,,
google/auth/compute_engine/__pycache__/credentials.cpython-313.pyc,,
google/auth/compute_engine/_metadata.py,sha256=IWloMOeSYNcJ40mfWstGx19kUR4_FK2pOVhRiT6d6zg,12860
google/auth/compute_engine/credentials.py,sha256=FsU9Gp2-jfTJUOzEd7XM8BUcMV1wKNJMsM2JlWAspuk,21805
google/auth/credentials.py,sha256=BEFmOLmLmUSLwmnacKDiCZRLVf2egZahC-w0-WfYQlI,24299
google/auth/crypt/__init__.py,sha256=xxBMOPuzD-XOxPvzkleLa2oj4u-9FSjnFmUN3PBk00s,3324
google/auth/crypt/__pycache__/__init__.cpython-313.pyc,,
google/auth/crypt/__pycache__/_cryptography_rsa.cpython-313.pyc,,
google/auth/crypt/__pycache__/_helpers.cpython-313.pyc,,
google/auth/crypt/__pycache__/_python_rsa.cpython-313.pyc,,
google/auth/crypt/__pycache__/base.cpython-313.pyc,,
google/auth/crypt/__pycache__/es256.cpython-313.pyc,,
google/auth/crypt/__pycache__/rsa.cpython-313.pyc,,
google/auth/crypt/_cryptography_rsa.py,sha256=o2QTRkfDRLtEBiq-fbpbTWypvxaxUDwzlx2NpXG9o0w,5158
google/auth/crypt/_helpers.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
google/auth/crypt/_python_rsa.py,sha256=L0kgvPXVdEGhajzxLRIgdk2T9rY0nlThrSlSz8Hc8XY,6123
google/auth/crypt/base.py,sha256=3CJrnQsppR6h-WnTRqSrt1hPEQVkHcwNIVJ_B5M00hY,4190
google/auth/crypt/es256.py,sha256=hXyeia3g6_TZf-UYdZVzFKgbPrLlgSuR1mMvYKSYqbg,6251
google/auth/crypt/rsa.py,sha256=QI17aKQsX3gdbJkBef-zsm-X_YBjBollCaoA65Am-WI,1109
google/auth/downscoped.py,sha256=KmmC8lbBWUFUsIYt1VpcbTXs3yYJYXteH19qdZQgobA,21793
google/auth/environment_vars.py,sha256=0hrEI7NJntZYlFVIABY9KF9NiECSx55d6gTXZIA15nQ,3530
google/auth/exceptions.py,sha256=8oEeB_1UirJIyBoglQRpCFjCOcxcTaLr6EpBrrxjeEs,3193
google/auth/external_account.py,sha256=_P-ZeWDzZWnXUYpSWUn6Hz6H1GmQHBUrR2TGJIyY5Wg,29949
google/auth/external_account_authorized_user.py,sha256=pWg83YfNIRPYuNb30anZ9eA2WELskMre9JZLs-1ngMA,16527
google/auth/iam.py,sha256=DQcJ127yejPqQa20jwzrGfiWffiWioAYkxZI4cQAUm8,4674
google/auth/identity_pool.py,sha256=lL1UmVB6uZ9xcKjp-L3ywvx0dS8n-smW2K59QgSWv9s,23894
google/auth/impersonated_credentials.py,sha256=RSyoUNFjW-IJzWHkRyHgQxPZ17fSzyxE8an71tme7Xo,27329
google/auth/jwt.py,sha256=1m_arp5x-4I5UTDaK9y50PSlKnUhnSKFyJW95k3-7cQ,31096
google/auth/metrics.py,sha256=wx3m95QQCF885wYvPL4T01CHOdCBN5JvFCtbOakd98Q,5614
google/auth/pluggable.py,sha256=BpAEEYPkR_0RGQtY0N71s_vtupJnzHODFDmbxo4gYAM,18663
google/auth/py.typed,sha256=l05_LTgi3oy-einKBrw66s6aavgzG2o-SekKPOY3ayM,74
google/auth/transport/__init__.py,sha256=vTdWUDBCXWF6wk3Xzu7L5I1lbtGYTxONi-IKYOmDdFM,3654
google/auth/transport/__pycache__/__init__.cpython-313.pyc,,
google/auth/transport/__pycache__/_aiohttp_requests.cpython-313.pyc,,
google/auth/transport/__pycache__/_custom_tls_signer.cpython-313.pyc,,
google/auth/transport/__pycache__/_http_client.cpython-313.pyc,,
google/auth/transport/__pycache__/_mtls_helper.cpython-313.pyc,,
google/auth/transport/__pycache__/_requests_base.cpython-313.pyc,,
google/auth/transport/__pycache__/grpc.cpython-313.pyc,,
google/auth/transport/__pycache__/mtls.cpython-313.pyc,,
google/auth/transport/__pycache__/requests.cpython-313.pyc,,
google/auth/transport/__pycache__/urllib3.cpython-313.pyc,,
google/auth/transport/_aiohttp_requests.py,sha256=DdtN_5zXWm7ewsvejOfMfa9_KSYXFX8upLdGL_qKDCI,14820
google/auth/transport/_custom_tls_signer.py,sha256=ilLlKFNognkvOWcnlYAWmUIUo9YhSrTSAKLa05zQ8Do,9989
google/auth/transport/_http_client.py,sha256=_xiN4rF9SMT0cHwzvj0jRRXkkHxGG2IyOBOHxB-I1Ag,3798
google/auth/transport/_mtls_helper.py,sha256=sjiEaVS_yeSwAzFVxp58PT89eb5ZpyF7HU6OJ78Rrm0,16309
google/auth/transport/_requests_base.py,sha256=4y0tTMR_hPGeAmBSyCU6_moh99ZxJZ4CF79E2s-t7TA,1657
google/auth/transport/grpc.py,sha256=EqAUseAZxvvVziSlzVAVucwYC0tk3kPwz2adqLfujZg,13742
google/auth/transport/mtls.py,sha256=U0FtVU8JhxlCcIOrNov7F0aXWqV3wURR8KDf9tRHB6k,4671
google/auth/transport/requests.py,sha256=UD3h-Qbuzo926HU_PDl_LlX-ysyxiwHSp_QvUrv06m0,22421
google/auth/transport/urllib3.py,sha256=4gWuIuMKiH1swqTyI_NShRFgFtkguVoMhrjAhKbEUoY,16387
google/auth/version.py,sha256=5xhIa3qfR5kn7lKBjMEZgqbnSy2FGVgc5zxNdHE0jmM,598
google/oauth2/__init__.py,sha256=IdFKxhIzlqNIalPgeB2P5hP6KkoxcpNk61hp7P2B85w,1196
google/oauth2/__pycache__/__init__.cpython-313.pyc,,
google/oauth2/__pycache__/_client.cpython-313.pyc,,
google/oauth2/__pycache__/_client_async.cpython-313.pyc,,
google/oauth2/__pycache__/_credentials_async.cpython-313.pyc,,
google/oauth2/__pycache__/_id_token_async.cpython-313.pyc,,
google/oauth2/__pycache__/_reauth_async.cpython-313.pyc,,
google/oauth2/__pycache__/_service_account_async.cpython-313.pyc,,
google/oauth2/__pycache__/challenges.cpython-313.pyc,,
google/oauth2/__pycache__/credentials.cpython-313.pyc,,
google/oauth2/__pycache__/gdch_credentials.cpython-313.pyc,,
google/oauth2/__pycache__/id_token.cpython-313.pyc,,
google/oauth2/__pycache__/reauth.cpython-313.pyc,,
google/oauth2/__pycache__/service_account.cpython-313.pyc,,
google/oauth2/__pycache__/sts.cpython-313.pyc,,
google/oauth2/__pycache__/utils.cpython-313.pyc,,
google/oauth2/__pycache__/webauthn_handler.cpython-313.pyc,,
google/oauth2/__pycache__/webauthn_handler_factory.cpython-313.pyc,,
google/oauth2/__pycache__/webauthn_types.cpython-313.pyc,,
google/oauth2/_client.py,sha256=oqn0KfGoae2F2ZoBYCIi9GgEpYeyntTQkZYYlBf2Raw,21886
google/oauth2/_client_async.py,sha256=gBB74HOw_UVT6i-84T4N_39YnyajYwP5Ih1Kmtsjeu8,10129
google/oauth2/_credentials_async.py,sha256=hUrucQkcYuYlyCdHMci8tzaVncnjQlFc2sAfNu5Dt8k,4474
google/oauth2/_id_token_async.py,sha256=o_DViJoWMGlL3zwTbW2unGDBfY569D_VMB4l7bx-Qpw,10115
google/oauth2/_reauth_async.py,sha256=C6k3f4T0aoVWItl8shYjOl5ngaoTJw3zKVhqHAeBXU0,11696
google/oauth2/_service_account_async.py,sha256=5-HBGWoHhbWpCRbd34YiopQepEsEf8gSiuMlSm5hN84,5131
google/oauth2/challenges.py,sha256=__yS2EcWXlgdLLP4inbk0QjJuyXnztpT9r2DCuXvieI,10404
google/oauth2/credentials.py,sha256=AqPdW8ymp1EnmiTgwyLdRxjaj2kISjHPw4Yh0JZUleI,24913
google/oauth2/gdch_credentials.py,sha256=CY6iPnPuc2OCIe1Zujwg1Mu9QSl1iGJqGOy6TkUleHw,9007
google/oauth2/id_token.py,sha256=G41ugqrEkj0VqP3hAFLH6IzmFqPZv81WkU6_lviKb4Q,13497
google/oauth2/py.typed,sha256=I0muXRRdbdpJoZ_VyheisiTTYcmjTAitQpNvuuh6fMw,76
google/oauth2/reauth.py,sha256=p9ybxvFyaSMM85jL2veKMM-DVb4TtrDVPNqsLeDPmyk,12845
google/oauth2/service_account.py,sha256=_I405N-Z3_So-WsKftsEutFsN4U6pLt2s5Ka73pXTQ0,33518
google/oauth2/sts.py,sha256=GjpFEvByl3EzyGt2v1kev6rvP7_uSQ3eTlpBK9vUhSc,6699
google/oauth2/utils.py,sha256=4crAdpKbDtobpQfXJc3uF6Zm6F3IzffvRSo-9h_515w,6315
google/oauth2/webauthn_handler.py,sha256=6hYiSDIFXlLwghsYf13ceDiOWdLYn6Dh7-YwSqTbLaA,2743
google/oauth2/webauthn_handler_factory.py,sha256=soE5cokZ3pLNbBo1HC6F1N-N-I-ir-DGlD0trGPCpBs,429
google/oauth2/webauthn_types.py,sha256=IHdqUe-EWOU-CmyLnHLniqc7vGHZ8HpavB0dcjn7Zl8,5386
google_auth-2.43.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
google_auth-2.43.0.dist-info/METADATA,sha256=JTvF62jOSortgBY-C9spDO0V-smY-2j-HM-YpbafXl0,6585
google_auth-2.43.0.dist-info/RECORD,,
google_auth-2.43.0.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
google_auth-2.43.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
google_auth-2.43.0.dist-info/top_level.txt,sha256=_1QvSJIhFAGfxb79D6DhB7SUw2X6T4rwnz_LLrbcD3c,7

View File

@@ -0,0 +1,6 @@
Wheel-Version: 1.0
Generator: setuptools (80.9.0)
Root-Is-Purelib: true
Tag: py2-none-any
Tag: py3-none-any

View File

@@ -0,0 +1,201 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.