Setting up the local environment#
Creating a local copy of the project#
Clone the repository.
Create an environment (conda/mamba/virtualenv/etc).
Switch to the project folder and install the package and all dependencies:
cd meegsim
pip install -e .[dev]
You’re ready to start now!
Running Tests#
pytest
Building the Documentation#
Install the required packages.
pip install -e .[docs]
Build the documentation.
make html
Open it in the web browser.
make show