METADATA 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. Metadata-Version: 2.1
  2. Name: google-auth
  3. Version: 2.15.0
  4. Summary: Google Authentication Library
  5. Home-page: https://github.com/googleapis/google-auth-library-python
  6. Author: Google Cloud Platform
  7. Author-email: googleapis-packages@google.com
  8. License: Apache 2.0
  9. Keywords: google auth oauth client
  10. Classifier: Programming Language :: Python :: 3
  11. Classifier: Programming Language :: Python :: 3.6
  12. Classifier: Programming Language :: Python :: 3.7
  13. Classifier: Programming Language :: Python :: 3.8
  14. Classifier: Programming Language :: Python :: 3.9
  15. Classifier: Programming Language :: Python :: 3.10
  16. Classifier: Development Status :: 5 - Production/Stable
  17. Classifier: Intended Audience :: Developers
  18. Classifier: License :: OSI Approved :: Apache Software License
  19. Classifier: Operating System :: POSIX
  20. Classifier: Operating System :: Microsoft :: Windows
  21. Classifier: Operating System :: MacOS :: MacOS X
  22. Classifier: Operating System :: OS Independent
  23. Classifier: Topic :: Internet :: WWW/HTTP
  24. Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*
  25. License-File: LICENSE
  26. Requires-Dist: cachetools (<6.0,>=2.0.0)
  27. Requires-Dist: pyasn1-modules (>=0.2.1)
  28. Requires-Dist: six (>=1.9.0)
  29. Requires-Dist: enum34 (>=1.1.10) ; python_version < "3.4"
  30. Requires-Dist: rsa (<4.6) ; python_version < "3.6"
  31. Requires-Dist: rsa (<5,>=3.1.4) ; python_version >= "3.6"
  32. Provides-Extra: aiohttp
  33. Requires-Dist: requests (<3.0.0dev,>=2.20.0) ; extra == 'aiohttp'
  34. Requires-Dist: aiohttp (<4.0.0dev,>=3.6.2) ; (python_version >= "3.6") and extra == 'aiohttp'
  35. Provides-Extra: enterprise_cert
  36. Requires-Dist: cryptography (==36.0.2) ; extra == 'enterprise_cert'
  37. Requires-Dist: pyopenssl (==22.0.0) ; extra == 'enterprise_cert'
  38. Provides-Extra: pyopenssl
  39. Requires-Dist: pyopenssl (>=20.0.0) ; extra == 'pyopenssl'
  40. Requires-Dist: cryptography (>=38.0.3) ; extra == 'pyopenssl'
  41. Provides-Extra: reauth
  42. Requires-Dist: pyu2f (>=0.1.5) ; extra == 'reauth'
  43. Google Auth Python Library
  44. ==========================
  45. |pypi|
  46. This library simplifies using Google's various server-to-server authentication
  47. mechanisms to access Google APIs.
  48. .. |pypi| image:: https://img.shields.io/pypi/v/google-auth.svg
  49. :target: https://pypi.python.org/pypi/google-auth
  50. Installing
  51. ----------
  52. You can install using `pip`_::
  53. $ pip install google-auth
  54. .. _pip: https://pip.pypa.io/en/stable/
  55. For more information on setting up your Python development environment, please refer to `Python Development Environment Setup Guide`_ for Google Cloud Platform.
  56. .. _`Python Development Environment Setup Guide`: https://cloud.google.com/python/setup
  57. Extras
  58. ------
  59. google-auth has few extras that you can install. For example::
  60. $ pip install google-auth[pyopenssl]
  61. Note that the extras pyopenssl and enterprise_cert should not be used together because they use conflicting versions of `cryptography`_.
  62. .. _`cryptography`: https://cryptography.io/en/latest/
  63. Supported Python Versions
  64. ^^^^^^^^^^^^^^^^^^^^^^^^^
  65. Python >= 3.6
  66. Unsupported Python Versions
  67. ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  68. - Python == 2.7: The last version of this library with support for Python 2.7
  69. was `google.auth == 1.34.0`.
  70. - Python 3.5: The last version of this library with support for Python 3.5
  71. was `google.auth == 1.23.0`.
  72. Documentation
  73. -------------
  74. Google Auth Python Library has usage and reference documentation at https://googleapis.dev/python/google-auth/latest/index.html.
  75. Current Maintainers
  76. -------------------
  77. - `@busunkim96 <https://github.com/busunkim96>`_ (Bu Sun Kim)
  78. Authors
  79. -------
  80. - `@theacodes <https://github.com/theacodes>`_ (Thea Flowers)
  81. - `@dhermes <https://github.com/dhermes>`_ (Danny Hermes)
  82. - `@lukesneeringer <https://github.com/lukesneeringer>`_ (Luke Sneeringer)
  83. Contributing
  84. ------------
  85. Contributions to this library are always welcome and highly encouraged.
  86. See `CONTRIBUTING.rst`_ for more information on how to get started.
  87. .. _CONTRIBUTING.rst: https://github.com/googleapis/google-auth-library-python/blob/main/CONTRIBUTING.rst
  88. License
  89. -------
  90. Apache 2.0 - See `the LICENSE`_ for more information.
  91. .. _the LICENSE: https://github.com/googleapis/google-auth-library-python/blob/main/LICENSE