Metadata-Version: 2.1
Name: whitebox-plugin-gps-simulator
Version: 0.1.0
Summary: A plugin for whitebox to simulate GPS data
License: GNU Affero General Public License v3
Author: avilabss
Author-email: contact@avilabs.net
Requires-Python: >=3.10.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Description-Content-Type: text/markdown

# Whitebox - GPS Simulator Plugin

This is a plugin for [whitebox](https://gitlab.com/whitebox-aero) that simulates GPS data.

## Installation

Clone the repository into the `plugins` directory of whitebox. That's it!

## For Developers

1. Make sure [poetry](https://python-poetry.org/docs/#installation) is installed.
2. Run: `poetry config virtualenvs.in-project true`
3. Ensure you are using supported python version (3.10 and above): `poetry env use 3.10`
4. Run: `poetry install`

## Running Tests

Run: `make test`

## Contribution Guidelines

1. Write tests for each new feature.
2. Ensure coverage is 90% or more.
3. [Google style docstrings](https://mkdocstrings.github.io/griffe/docstrings/#google-style)
   should be used for all functions and classes.

