Skip to content

qutech/QuMADA

Folders and files

NameName
Last commit message
Last commit date
Mar 5, 2024
Jan 3, 2025
Jan 3, 2025
Mar 5, 2024
Dec 23, 2024
Jul 20, 2023
May 22, 2023
Aug 16, 2023
Feb 8, 2023
Mar 5, 2024
Jan 3, 2025
Oct 13, 2023
Aug 17, 2023
Oct 13, 2023

Repository files navigation

QuMADA

Interfaces and measurement scripts for usage with QCoDeS.

Documentation

Find the current documentation on readthedocs.

Installation

Setup virtual environment

Installation of QuMADA should be done in a virtual environment. There are several methods of creating a virtual environment, python's native being venv:

On windows, run

python -m venv .venv
.venv\Scripts\activate.bat

On linux, run

python -m venv .venv
source .venv/bin/activate

Install QuMADA

Install QuMADA directly from PyPI:

python -m pip install qumada

Alternatively, install the latest development version of QuMADA from github:

git clone https://github.com/qutech/qumada.git qumada
cd qumada
python -m pip install -e .

You can also install optional dependencies, like Spyder or QCoDeS' plottr-inspectr:

python -m pip install -e .[spyder,gui]

Setup for development

For development, first clone the latest development version of QuMADA from github:

git clone https://github.com/qutech/qumada.git qumada
cd qumada

The requirements are stored in dev_requirements.txt.

python -m pip install -r dev_requirements.txt

Set up pre-commit hooks

python -m pre-commit install

Build documentation

To build the documentation, run:

tox -e docs

or

cd docs
make html

The built documentation can be found at _build/html/index.html.