Shortcuts

Development setup

Clone repository:

git clone https://github.com/LukasHedegaard/ride.git
cd ride

Install extended dependencies:

pip install -e .[build,dev,docs]

Run tests:

make test

Build docs

cd docs
make html

Build and publish to TestPyPI:

make clean
make testbuild
make testpublish

Build and publish to PyPI:

make clean
make build
make publish