943acbc573
Durcit la convention de nommage des projets (dérive constatée : 'Sliding Automation', 'code_versioning'... au lieu des formes canoniques). - trilium_api.py : projets_canoniques() lit le référentiel = valeurs du label projet sur les notes de type=projet (source unique, pas de constante en dur). Note-projet CodeVersioning créée (manquait). - mcp_server.py : _valider_projet() branché dans les 6 tools de création (add_decision/history/backlog, new_conversation, create_entite, add_skill). Refuse un projet non canonique (suggestion si faute) ou inconnu (renvoi au processus de création de projet). Ne verrouille pas si référentiel illisible. - lint_audit.py : VAL-nommage aligné sur le référentiel (attrape casse, espace ET snake_case ; l'ancien 'contient un espace' ratait code_versioning). - Données : 79 notes ré-étiquetées vers les 3 formes canoniques. Quality by design : l'erreur de nommage devient impossible à l'écriture, le Lint n'est plus que le filet de sécurité.
50 lines
2.5 KiB
Plaintext
50 lines
2.5 KiB
Plaintext
Metadata-Version: 2.4
|
|
Name: typing-inspection
|
|
Version: 0.4.2
|
|
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-Expression: MIT
|
|
License-File: LICENSE
|
|
Classifier: Development Status :: 3 - Alpha
|
|
Classifier: Intended Audience :: Developers
|
|
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.
|