First steps
Installation
MAFw can be installed using pip in a separated virtual environment.
c:\> python -m venv mafw-env
c:\> cd mafw-env
c:\mafw-env> Scripts\activate
(mafw-env)c:\mafw-env> pip install mafw
$ python -m venv mafw-env
$ cd mafw-env
$ source bin/activate
(mafw-env) $ pip install mafw
Requirements
MAFw has been developed using python version 3.11 and tested with newer versions up to the current stable release (3. 13). Apart from some typing issues, we do not expect problems when running it with older releases. It is our intention to follow the future advancement of python and possibly use the NO-GIL option starting from version 3.14 to improve the overall performances.
Concerning dependencies, all packages required by MAFw are specified in the pyproject file and will be automatically installed by pip. Nevertheless, if you are curious to know what comes with MAFw, here is a list of direct dependencies with the indication of what their role is inside the library.
pluggy (>=1.5): to implement the plugin mechanism and let the users develop their own processors;
click (>=8.1): to implement the command line interface for the mafw execution engine;
tomlkit (>0.13): to implement the reading and writing of steering files;
peewee (>3.17): to implement the ORM database interface;
Deprecated (>1.2): to inform the user about deprecated usages;
typing-extensions (>4.13 only for python <=3.11) to have access to typing annotations.
If mafw is installed with the additional features provided with by seaborn, then those packages will also be installed.
seaborn (>=0.13): to implement the generation of high level graphical outputs;
matplotlib (>=3.1): the low level graphics interface;
pandas[hdf5] (>=2.2): to allow the use of dataframes for data manipulations.
By default mafw comes with an abstract plotting interface. If you want to use seaborn, then just install the optional dependency pip install mafw[seaborn]
All MAFw dependencies will be automatically installed by pip.
Contributing
Contributions to the software development are very much welcome. A more detailed guide on how to contribute or to get help for the development of your processors can be found in CONTRIBUTING.md.
If you want to join the developer efforts, the best way is to clone/fork this repository on your system and start working.
The development team has adopted hatch for basic tasks. So, once you have downloaded the git repository to your system, open a shell there and type:
D:\mafw> hatch env create dev
D:\mafw> hatch env find dev
C:\path\to\.venv\mafw\KVhWIDtq\dev.py3.11
C:\path\to\.venv\mafw\KVhWIDtq\dev.py3.12
C:\path\to\.venv\mafw\KVhWIDtq\dev.py3.13
$ hatch env create dev
$ hatch env find dev
/path/to/venv/dev.py3.11
/path/to/venv/dev.py3.12
/path/to/venv/dev.py3.13
to generate the python environments for the development. This command will actually create the whole environment matrix, that means one environment for each supported python version. If you intend to work primarily with one single python version, simply specify it in the create command, for example:
D:\mafw> hatch env create dev.py3.13
D:\mafw> hatch env find dev.py3.13
C:\path\to\.venv\mafw\KVhWIDtq\dev.py3.13
$ hatch env create dev.py3.13
$ hatch env find dev.py3.13
/path/to/venv/dev.py3.13
hatch will take care of installing MAFw in development mode with all the required dependencies. Use the output of the find command, if you want to add the same virtual environment to your favorite IDE. Once done, you can spawn a shell in the development environment just by typing:
D:\mafw> hatch shell dev.py3.13
(dev.py3.13) D:\mafw>
$ hatch shell dev.py3.13
(dev.py3.13) $
and from there you can simply run mafw and all other scripts.
Note
If you are not familiar hatch, we strongly encorage to have a look at their website. This powerful tool, similar to poetry and uv, it is simplifying the creation of a matrix of virtual environments for developing and testing your code with different combination of requirements.
We strongly recommend to install hatch via pipx, so to have the executable available systemwide, but nevertheless running in a separate environment.
MAFw uses pre-commit to assure a high quality code style. The pre-commit package will be automatically installed into your environment, but it must be initialised before its first use. To do this, simply run the following command:
(dev.py3.13) D:\mafw> pre-commit install
(dev.py3.13) $ pre-commit install
And now you are really ready to go with your coding!
Before pushing all your commits to the remote branch, we encourage you to run the pre-push tests to be sure that everything still works as expected. You can do this by typing:
D:\mafw> hatch run dev.py3.13:pre-push
$ hatch run dev.py3.13:pre-push
if you are not in an activated development shell, or
(dev.py3.13) D:\mafw> hatch run pre-push
(dev.py3.13) $ hatch run pre-push
if you are already in the dev environment.
These pre-push checks will include some cosmetic aspects (ruff check and format) and more relevant points like static type checking with mypy, documentation generation with sphinx and functionality tests with pytest.
Testing
MAFw comes with an extensive unit test suite of more than 1000 test cases for an overall code coverage of 99%.
Tests have been coded using pytest best practice and are aiming to prove the functionality of each unit of code taken individually. Given the high level of interoperability of MAFw with other libraries (toml, peewee and seaborn just to name a few), unit tests rely heavily on patched objects to assure reproducibility.
Nevertheless full integration tests are also included in the test suite. These tests will cover all relevant aspects of MAFw, including:
Installation of MAFw and of a Plugin project in a isolated environment
Use of MAFw executable to create some data files and analyse them to create a graphical output.
Use of a database to store the collected data.
Check the database trigger functionalities to avoid repeating useless analysis steps, for example when a new file is added, removed or changed.
If you plan to collaborate in the development of MAFw, you must include unit tests for your contributions.
As already mentioned, MAFw is using hatch as project management. In the pyproject.toml file, hatch is configured to have a matrix of test environment in order to run the whole test suite with the supported versions of python (3.11, 3.12 and 3.13).
Running the suite is very easy. Navigate to the folder where you have your local copy of MAFw and type hatch test.
Hatch will take care of installing the proper environment and run the tests. Should one or more test(s) fail, then the
slow integration tests will be skipped to spare some time.
Have a look at the hatch test options, in particular the -a, to test over all the environments in the matrix and the -c to generate coverage data for the production of a coverage report.
Citing MAFw
If you used MAFw in your research and you would like to acknoledge the project in your academic publication we suggest citing the following paper:
Bulgheroni et al., (2025). MAFw: A Modular Analysis Framework for Streamlining and Optimizing Data Analysis Workflows. Journal of Open Source Software, 10(114), 8449, https://doi.org/10.21105/joss.08449
or as BibTeX format:
@article{Bulgheroni2025,
doi = {10.21105/joss.08449},
url = {https://doi.org/10.21105/joss.08449},
year = {2025},
publisher = {The Open Journal},
volume = {10},
number = {114},
pages = {8449},
author = {Bulgheroni, Antonio and Krachler, Michael},
title = {MAFw: A Modular Analysis Framework for Streamlining and Optimizing Data Analysis Workflows},
journal = {Journal of Open Source Software}
}