Build a Python package from notebooks.
1
2
3
4def build(
root='.' # root directory containing pyproject.toml
) -> str:
"""Build a Python package from notebooks.""" Build a Python package from notebooks.
1
2
3
4def build(
root='.' # root directory containing pyproject.toml
) -> str:
"""Build a Python package from notebooks.""" Remove cache and temporary files (__pycache__, __marimo__, .pytest_cache, etc).
1
2def tidy():
"""Remove cache and temporary files (__pycache__, __marimo__, .pytest_cache, etc).""" Remove all build artifacts (dist, docs, src) and cache files.
1
2def nuke():
"""Remove all build artifacts (dist, docs, src) and cache files."""