MCPcopy Index your code
hub / github.com/DeepLabCut/DeepLabCut / DLCMeta

Class DLCMeta

tools/docs_and_notebooks_check.py:118–135  ·  view source on GitHub ↗

Metadata embedded in files under the `deeplabcut` namespace.

Source from the content-addressed store, hash-verified

116
117
118class 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
138class ScanConfig(BaseModel):

Callers 2

update_filesFunction · 0.85
normalize_notebooksFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected