Installation

multidms requires Python 3.9 or higher.

The source code is available on GitHub at https://github.com/matsengrp/multidms.

Install from PyPI

pip install multidms

Developer install

Option B: pip

git clone git@github.com:matsengrp/multidms.git
cd multidms
python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
pytest --doctest-modules multidms tests
ruff check .
black .

Both approaches are fully supported. See CONTRIBUTING.rst for contribution guidelines.