mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2025-12-05 19:17:28 -06:00
- Add BOOK_ROOT, QUARTO_DIR, TOOLS_DIR, DEPS_DIR, DOCKER_DIR env vars to all workflows - Update path references to use centralized env vars - Fix requirements.txt to reference book/tools/dependencies - Fix pyproject.toml entry points: cli.main -> book.cli.main - Add __init__.py to book/ and book/tools/ for Python package support - Fix Dockerfile path casing (dockerfile -> Dockerfile) - Fix publish-live.yml relative path after cd This enables TinyTorch to coexist at repo root alongside book/ directory.
13 lines
442 B
Plaintext
13 lines
442 B
Plaintext
# MLSysBook Dependencies
|
|
# This is a convenience file that includes all dependencies
|
|
#
|
|
# To install all dependencies:
|
|
# pip install -r requirements.txt
|
|
#
|
|
# For development work including Book Binder CLI:
|
|
# pip install -r requirements.txt
|
|
#
|
|
# Main dependencies are maintained in book/tools/dependencies/requirements.txt
|
|
# (MLSysBook content is now under book/ to accommodate TinyTorch at root)
|
|
|
|
-r book/tools/dependencies/requirements.txt |