Files

8 lines
234 B
Python

"""Spatial Lab: editable mathematical construction graphs and portable geometry."""
__version__ = "0.1.0"
from .kernel import build, register_operator
from .project import Project
__all__ = ["build", "register_operator", "Project"]