Metadata-Version: 2.4
Name: klaatu-python
Version: 2.4.0
Author: Robert Huselius
Author-email: Robert Huselius <robert@huseli.us>
License-Expression: GPL-3.0-only
License-File: LICENSE
Requires-Python: >=3.10
Project-URL: Homepage, https://github.com/Eboreg/klaatu-python
Project-URL: Issues, https://github.com/Eboreg/klaatu-python/issues
Project-URL: Source, https://github.com/Eboreg/klaatu-python
Description-Content-Type: text/markdown

# klaatu-python

A bunch of more or less useful Python utils without any 3rd party dependencies.

## Development install

```shell
python3 -m venv .venv
source .venv/bin/activate
pip install -e .[dev]
```

## Inclusion in projects

In `pyproject.toml`:
```
[project]
dependencies = [
    "klaatu-python",
    ...
]
```
