Metadata-Version: 2.4
Name: kevinbotlib
Version: 1.0.0a2
Summary: KevinbotLib robot development framework
Project-URL: Documentation, https://github.com/meowmeowahr/kevinbotlib#readme
Project-URL: Issues, https://github.com/meowmeowahr/kevinbotlib/issues
Project-URL: Source, https://github.com/meowmeowahr/kevinbotlib
Author-email: Kevin Ahr <meowmeowahr@gmail.com>
License-Expression: LGPL-3.0-or-later
License-File: LICENSE
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.10
Requires-Dist: click~=8.1.8
Requires-Dist: jinja2~=3.1.5
Requires-Dist: loguru~=0.7.3
Requires-Dist: opencv-python~=4.11.0
Requires-Dist: orjson~=3.10.15
Requires-Dist: platformdirs~=4.3.6
Requires-Dist: pybase64~=1.4.0
Requires-Dist: pydantic~=2.9.2
Requires-Dist: pyftpdlib~=2.0.1
Requires-Dist: pysdl2~=0.9.17
Requires-Dist: pyserial~=3.5
Requires-Dist: websockets~=14.2
Description-Content-Type: text/markdown

<p align="center">
  <img src="https://raw.githubusercontent.com/meowmeowahr/kevinbotlib/refs/heads/main/docs/media/icon.svg" alt="Kevinbot v3 logo" width=120/>
</p>

# KevinbotLib

[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![Hatch project](https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg)](https://github.com/pypa/hatch)
[![PyPI - Version](https://img.shields.io/pypi/v/kevinbotlib.svg)](https://pypi.org/project/kevinbotlib)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/kevinbotlib.svg)](https://pypi.org/project/kevinbotlib)

-----

**The KevinbotLib Robot Development Framework**

KevinbotLib includes all many utility classes for developing robots, such as communication, joystick input, logging, and more.

## Table of Contents

- [KevinbotLib](#kevinbotlib)
  - [Table of Contents](#table-of-contents)
  - [Installation](#installation)
  - [Developing](#developing)
    - [Set up module in development mode](#set-up-module-in-development-mode)
    - [Formatting](#formatting)
  - [License](#license)

## Installation

```console
pip install kevinbotlib
```

## Developing

### Set up module in development mode

* Install hatch
  
  [Hatch Installation](https://hatch.pypa.io/1.12/install/) (I recommend using pipx)
* Clone this repo

  ```console
  git clone https://github.com/meowmeowahr/kevinbotlib && cd kevinbotlib
  ```
* Create env
  ```console
  hatch env create
  ```
* Activate env

  ```console
  hatch shell
  ```

### Formatting

Formatting is done through ruff. You can run the formatter using:

```console
hatch fmt
```

## License

`kevinbotlib` is distributed under the terms of the [LGPL-3.0-or-later](https://spdx.org/licenses/LGPL-3.0-or-later.html) license.
