mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-05-02 17:17:32 -05:00
- Remove version field from all module.yaml files - Update template generator to exclude version field - Further simplify metadata to focus on system information only - Status remains dynamically determined by test results
26 lines
547 B
YAML
26 lines
547 B
YAML
# TinyTorch Module Metadata
|
|
# Essential system information for CLI tools and build systems
|
|
|
|
name: "setup"
|
|
title: "Setup"
|
|
description: "Development environment setup and project configuration"
|
|
|
|
# Dependencies
|
|
dependencies:
|
|
prerequisites: []
|
|
enables: ["tensor", "activations", "layers"]
|
|
|
|
# Package Export
|
|
exports_to: "tinytorch.core.utils"
|
|
|
|
# File Structure
|
|
files:
|
|
dev_file: "setup_dev.py"
|
|
test_file: "tests/test_setup.py"
|
|
readme: "README.md"
|
|
|
|
# Components
|
|
components:
|
|
- "hello_tinytorch"
|
|
- "environment_check"
|
|
- "project_structure" |