# Environment Setup --- ## ๐Ÿš€ Create the environment ```bash python -m venv .venv .venv\Scripts\activate pip install -e . ``` Requires Python 3.10+ (per `pyproject.toml`). --- ## ๐Ÿ“ฆ Dependencies Development extras include: - `pytest`, `pytest-cov` โ€” test suite and coverage - `ruff` โ€” lint and format checking - `black` โ€” auto-formatting - `mypy` โ€” strict typing checks - `pydoclint` โ€” docstring โ†” signature consistency checks --- ## Related - [04 โ€“ Iterative Workflow](../04_iterative_workflow.md) ยท [02 โ€“ Quality Gates](02_quality_gates.md)