Metadata-Version: 2.1
Name: wind-correction
Version: 0.1.3
Summary: Allows you to calculate the displacement of a falling object caused by the wind.
License: MIT
Author: Jakub Śliwka
Author-email: kubapplll@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Description-Content-Type: text/markdown

# Wind Correction

Allows you to calculate the displacement of a falling object caused by the wind.

## Instalation

If you don't have it yet, install [Poetry](https://python-poetry.org/docs/)

```bash
$ curl -sSL https://install.python-poetry.org | python3 -
```

### Repository Setup

```bash
$ git clone git@gitlab.com:academic-aviation-club/droniada-2024/wind-correction.git
$ cd wind-correction
$ poetry shell
$ poetry install --no-root
```

## Checking Code Quality

```bash
$ task formatting
$ task flake8
$ task mypy
$ task pylint
```

## Run code

```bash
$ python -m wind_correction.ball
```

## Instruction for Windows users

Read this [installation guide](https://docs.fedoraproject.org/en-US/fedora/latest/getting-started/)

