e4dcfc49aa
Tests / Import Check (Python 3.13) (push) Has been cancelled
Tests / Import Check (Python 3.14) (push) Has been cancelled
Tests / Python Tests (Python 3.11) (push) Has been cancelled
Tests / Python Tests (Python 3.12) (push) Has been cancelled
Tests / Python Tests (Python 3.14) (push) Has been cancelled
Tests / Test Summary (push) Has been cancelled
Tests / Lint and Format (push) Has been cancelled
Tests / Web Node Tests (push) Has been cancelled
Tests / Import Check (Python 3.11) (push) Has been cancelled
Tests / Import Check (Python 3.12) (push) Has been cancelled
Tests / Python Tests (Python 3.13) (push) Has been cancelled
23 lines
1022 B
Plaintext
23 lines
1022 B
Plaintext
# ============================================
|
|
# DeepTutor Python Dependencies (Runtime Bundle)
|
|
# ============================================
|
|
# Python >= 3.11 required
|
|
#
|
|
# Single source of truth: pyproject.toml `[project.optional-dependencies]`.
|
|
# Files under requirements/ mirror those extras for Docker/CI installs that
|
|
# don't yet have access to pyproject.toml + source code.
|
|
#
|
|
# Preferred installs:
|
|
# pip install deeptutor # Full app (public wheel)
|
|
# pip install deeptutor-cli # CLI-only public wheel
|
|
# pip install -e . # Source checkout
|
|
# pip install -e ".[partners]" # Server + partner channel SDKs
|
|
# pip install -e ".[matrix]" # Matrix channel for partners
|
|
# pip install -e ".[math-animator]" # Manim animation engine (addon)
|
|
# pip install -e ".[dev]" # Server + dev/test tools
|
|
# pip install -e ".[all]" # Everything
|
|
#
|
|
# This file installs the full server runtime (CLI + API + partners).
|
|
|
|
-r requirements/partners.txt
|