METADATA 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. Metadata-Version: 2.4
  2. Name: typing-inspection
  3. Version: 0.4.2
  4. Summary: Runtime typing introspection tools
  5. Project-URL: Homepage, https://github.com/pydantic/typing-inspection
  6. Project-URL: Documentation, https://pydantic.github.io/typing-inspection/dev/
  7. Project-URL: Source, https://github.com/pydantic/typing-inspection
  8. Project-URL: Changelog, https://github.com/pydantic/typing-inspection/blob/main/HISTORY.md
  9. Author-email: Victorien Plot <contact@vctrn.dev>
  10. License-Expression: MIT
  11. License-File: LICENSE
  12. Classifier: Development Status :: 3 - Alpha
  13. Classifier: Intended Audience :: Developers
  14. Classifier: Programming Language :: Python
  15. Classifier: Programming Language :: Python :: 3
  16. Classifier: Programming Language :: Python :: 3 :: Only
  17. Classifier: Programming Language :: Python :: 3.9
  18. Classifier: Programming Language :: Python :: 3.10
  19. Classifier: Programming Language :: Python :: 3.11
  20. Classifier: Programming Language :: Python :: 3.12
  21. Classifier: Programming Language :: Python :: 3.13
  22. Classifier: Programming Language :: Python :: 3.14
  23. Classifier: Programming Language :: Python :: Implementation :: CPython
  24. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  25. Classifier: Typing :: Typed
  26. Requires-Python: >=3.9
  27. Requires-Dist: typing-extensions>=4.12.0
  28. Description-Content-Type: text/markdown
  29. # typing-inspection
  30. [![CI](https://img.shields.io/github/actions/workflow/status/pydantic/typing-inspection/ci.yml?branch=main&logo=github&label=CI)](https://github.com/pydantic/typing-inspection/actions?query=event%3Apush+branch%3Amain+workflow%3ACI)
  31. [![Coverage](https://coverage-badge.samuelcolvin.workers.dev/pydantic/typing-inspection.svg)](https://coverage-badge.samuelcolvin.workers.dev/redirect/pydantic/typing-inspection)
  32. [![PyPI](https://img.shields.io/pypi/v/typing-inspection.svg)](https://pypi.org/project/typing-inspection/)
  33. [![Versions](https://img.shields.io/pypi/pyversions/typing-inspection.svg)](https://github.com/pydantic/typing-inspection)
  34. [![License](https://img.shields.io/github/license/pydantic/typing-inspection.svg)](https://github.com/pydantic/typing-inspection/blob/main/LICENSE)
  35. [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
  36. `typing-inspection` provides tools to inspect type annotations at runtime.
  37. ## Installation
  38. From [PyPI](https://pypi.org/project/typing-inspection/):
  39. ```bash
  40. pip install typing-inspection
  41. ```
  42. The library can be imported from the `typing_inspection` module.