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#

  1. Clone the repository

  2. Install hatch:

    pip install hatch
    
  3. Create environment:

    hatch env create
    
  4. Build:

    hatch build
    
  5. Install:

    pip install build/amzn_fkat-*.whl
    
  6. In editable mode:

    pip install -e ".[test]"
    
  7. Enable pre-commit hooks for contributions:

    pip install -U pre-commit && pip install -U pre-commit-hooks && pre-commit install