Metadata-Version: 2.4
Name: klaatu-python
Version: 2.2.0
Author-email: Robert Huselius <robert@huseli.us>
License-Expression: GPL-3.0-only
Project-URL: Homepage, https://github.com/Eboreg/klaatu-python
Project-URL: Source, https://github.com/Eboreg/klaatu-python
Project-URL: Issues, https://github.com/Eboreg/klaatu-python/issues
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: ipython; extra == "dev"
Requires-Dist: ipdb; extra == "dev"
Requires-Dist: isort; extra == "dev"
Requires-Dist: pylint; extra == "dev"
Dynamic: license-file

# 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 @ git+https://git@github.com/Eboreg/klaatu-python.git",
    ...
]
```
