Update 2025-04-24_11:44:19
This commit is contained in:
@ -0,0 +1 @@
|
||||
pip
|
@ -0,0 +1,49 @@
|
||||
Metadata-Version: 2.4
|
||||
Name: typing-inspection
|
||||
Version: 0.4.0
|
||||
Summary: Runtime typing introspection tools
|
||||
Project-URL: Homepage, https://github.com/pydantic/typing-inspection
|
||||
Project-URL: Documentation, https://pydantic.github.io/typing-inspection/dev/
|
||||
Project-URL: Source, https://github.com/pydantic/typing-inspection
|
||||
Project-URL: Changelog, https://github.com/pydantic/typing-inspection/blob/main/HISTORY.md
|
||||
Author-email: Victorien Plot <contact@vctrn.dev>
|
||||
License-File: LICENSE
|
||||
Classifier: Development Status :: 3 - Alpha
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: License :: OSI Approved :: MIT License
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3 :: Only
|
||||
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: Programming Language :: Python :: 3.14
|
||||
Classifier: Programming Language :: Python :: Implementation :: CPython
|
||||
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
||||
Classifier: Typing :: Typed
|
||||
Requires-Python: >=3.9
|
||||
Requires-Dist: typing-extensions>=4.12.0
|
||||
Description-Content-Type: text/markdown
|
||||
|
||||
# typing-inspection
|
||||
|
||||
[](https://github.com/pydantic/typing-inspection/actions?query=event%3Apush+branch%3Amain+workflow%3ACI)
|
||||
[](https://coverage-badge.samuelcolvin.workers.dev/redirect/pydantic/typing-inspection)
|
||||
[](https://pypi.org/project/typing-inspection/)
|
||||
[](https://github.com/pydantic/typing-inspection)
|
||||
[](https://github.com/pydantic/typing-inspection/blob/main/LICENSE)
|
||||
[](https://github.com/astral-sh/ruff)
|
||||
|
||||
`typing-inspection` provides tools to inspect type annotations at runtime.
|
||||
|
||||
## Installation
|
||||
|
||||
From [PyPI](https://pypi.org/project/typing-inspection/):
|
||||
|
||||
```bash
|
||||
pip install typing-inspection
|
||||
```
|
||||
|
||||
The library can be imported from the `typing_inspection` module.
|
@ -0,0 +1,13 @@
|
||||
typing_inspection-0.4.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
typing_inspection-0.4.0.dist-info/METADATA,sha256=nwce9HV_uceYwTgKZquG4b0PVm2CDX5Ps4BtZDuw8KQ,2579
|
||||
typing_inspection-0.4.0.dist-info/RECORD,,
|
||||
typing_inspection-0.4.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
||||
typing_inspection-0.4.0.dist-info/licenses/LICENSE,sha256=TkDLp5OjiN1FZXe4ZXF1u-leTe0pcFNLPFnMzCZhpwg,1066
|
||||
typing_inspection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
typing_inspection/__pycache__/__init__.cpython-311.pyc,,
|
||||
typing_inspection/__pycache__/introspection.cpython-311.pyc,,
|
||||
typing_inspection/__pycache__/typing_objects.cpython-311.pyc,,
|
||||
typing_inspection/introspection.py,sha256=lqvS7zz2l_YK7wWCH1-3h9-SzrlYDleRwcvsFWPX7BQ,20951
|
||||
typing_inspection/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
typing_inspection/typing_objects.py,sha256=10Ue6eBwD01hqlfwuvdSGkChkY58dTiRBkVy7ezsiPc,16412
|
||||
typing_inspection/typing_objects.pyi,sha256=KZVKkdXwCPB3KWUVBj1wv286HcaOzH3vi73AixzL3N4,8941
|
@ -0,0 +1,4 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: hatchling 1.27.0
|
||||
Root-Is-Purelib: true
|
||||
Tag: py3-none-any
|
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2025 Victorien
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
Reference in New Issue
Block a user