Metadata embedded in files under the `deeplabcut` namespace.
| 116 | |
| 117 | |
| 118 | class DLCMeta(BaseModel): |
| 119 | """Metadata embedded in files under the `deeplabcut` namespace.""" |
| 120 | |
| 121 | model_config = ConfigDict(extra="allow") |
| 122 | |
| 123 | # Tool-managed: last meaningful content update date (excluding metadata commits) |
| 124 | last_content_updated: date | None = None |
| 125 | |
| 126 | # Optional tool-managed: last time metadata/normalization was performed |
| 127 | last_metadata_updated: date | None = None |
| 128 | # Optional human-managed verification fields |
| 129 | last_verified: date | None = None |
| 130 | # Version or other string indicating what this file was verified for (e.g. "3.0.0rc13") |
| 131 | verified_for: str | None = None |
| 132 | # Extra metadata fields for later usage (e.g. allowlist tier classification), but not currently used by the tool |
| 133 | tier: str | None = None |
| 134 | ignore: bool = False |
| 135 | notes: str | None = None |
| 136 | |
| 137 | |
| 138 | class ScanConfig(BaseModel): |
no outgoing calls
no test coverage detected