Metadata-Version: 2.1
Name: delta-utils
Version: 0.1.0
Summary: Utility tools for Delta Academy tournaments
Project-URL: Homepage, https://github.com/Delta-Academy/delta-utils/
Author-email: neuromantic99 <james@learney.me>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Requires-Dist: dirhash
Description-Content-Type: text/markdown

# Delta-utils

## Installation

```
pip install delta-utils
```

## To deploy to PyPI

First increase the version number in pyproject.toml (e.g. 0.0.13 -> 0.0.14)

```bash

python3 -m pip install --upgrade build
python3 -m build
python3 -m pip install --upgrade twine
twine upload --skip-existing dist/*

```
