13 lines
377 B
Python
13 lines
377 B
Python
"""NeuPlan: toy neuromorphic planning stack scaffold.
|
|
|
|
This package provides a minimal, production-oriented scaffold for a
|
|
NeuPlan MVP: DSL types, a neuromorphic IR translator, a backend shim,
|
|
and an onboard runtime that can be wired to actual neuromorphic hardware.
|
|
"""
|
|
|
|
from . import dsl
|
|
from . import runtime
|
|
from . import backends
|
|
|
|
__all__ = ["dsl", "runtime", "backends"]
|