Read me

pyrootplots: ROOT files visualisation using Python

Documentation Status GitHub last commit GitHub repo size

License

This project is licensed under the terms of the MIT license.

Documentation 🇬🇧

See https://pyrootplots.readthedocs.io/en/latest/.

Package installation

git clone https://github.com/bastienvoirin/pyrootplots
pip install --user .

Usage

  • Install pyrootplots (see Package installation)

  • Set up the environment:

conda env create -f environment.yml
conda activate pyrootplots
  • Import pyrootplots in your Python script:

from pyrootplots import *

Development

  • Install pyrootplots (see Package installation)

  • Set up the environment:

conda env create -f environment.yml
conda activate pyrootplots
  • Develop:

cd src/pyrootplots
  • Build the docs (the HTML pages are in docs/_build/html):

cd docs
make clean # optional
make html
  • Commit

git add
git commit
git push