Python routines that are shared between SpEC and SpECTRE, such as eccentricity control.
Install the package (and development extras) into a virtual environment:
python -m pip install .[dev]Build the Sphinx documentation locally with the docs extra:
python -m pip install .[docs]
sphinx-build -b html docs docs/_build/htmlThe project uses black and isort for formatting. Run the checks locally
together with the tests:
black .
isort .
pytestContinuous integration via GitHub Actions enforces these checks on pushes and pull requests.