Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 571 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 571 Bytes

Stanhelper

Stanhelper is a lightweight wrapper around cmdStan.

Installation

To install from pip, run

pip install stanhelper

Development

To begin:

(venv)$ pip install pip-tools

To keep environment updated:

(venv)$ pip-compile --output-file requirements.txt requirements.in
(venv)$ pip-sync

To install stanhelper in develop mode:

(venv)$ python setup.py develop

Testing

Make sure you compile the Stan files under tests first. Then run

(venv)$ pytest --flake8