wads.scripts.install_deps

Install Dependencies

This script installs Python dependencies from various sources including pyproject.toml, requirements.txt, and direct package names.

Usage:

python -m wads.scripts.install_deps [options]

param –pypi-packages PKG1 PKG2… Python packages to install:

param –dependency-files FILE1:

param FILE2:

param … Dependency files to install from:

param –extras EXTRA1:

param EXTRA2:

param … Extras to install from pyproject.toml:

wads.scripts.install_deps.install_from_dependency_files(files: list[str], extras: list[str] | None = None) bool[source]

Install from dependency files.

wads.scripts.install_deps.install_pypi_packages(packages: list[str]) bool[source]

Install packages from PyPI.

wads.scripts.install_deps.main()[source]

Main entry point.