Metadata-Version: 2.4
Name: mbappe
Version: 0.1.0
Summary: A library for calculating the momentum and speed of numeric sequences
Author-email: cheesqwak <chees@qwak.com>
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# mbappe

A library to analyze numeric acceleration.

## Usage
```python
import mbappe

velocity = mbappe.get_speed([10, 20, 35])
print(velocity)
```
