Quickstart#
This quickstart guide helps you quickly install and get ready to use FKAT.
Installing from PyPI#
pip install amzn-fkat
Installing Locally for Development#
Clone the repository
Install hatch:
pip install hatch
Create environment:
hatch env create
Build:
hatch buildInstall:
pip install build/amzn_fkat-*.whl
In editable mode:
pip install -e ".[test]"
Enable pre-commit hooks for contributions:
pip install -U pre-commit && pip install -U pre-commit-hooks && pre-commit install