Development¶
We welcome contributions!
Setup¶
Clone the repository:
git clone https://github.com/henriasv/lammps-logfile.git cd lammps-logfile
Install in editable mode with dependencies:
pip install -e .[docs]
Running Tests¶
We use pytest for testing. To run the test suite:
pip install -e .[test]
pytest
Building Documentation¶
To build the documentation locally:
Install documentation dependencies:
pip install -r docs/requirements.txt
Build HTML:
cd docs make html
Open
docs/_build/html/index.htmlin your browser.