Metadata-Version: 2.1
Name: jutility
Version: 0.0.2
Summary: Collection of Python utilities intended to be useful for machine learning research and experiments
Author-email: Jake Levi <jakelevi@hotmail.co.uk>
Project-URL: Homepage, https://github.com/jakelevi1996/jutility
Project-URL: Bug Tracker, https://github.com/jakelevi1996/jutility/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# jutility

Collection of Python utilities intended to be useful for machine learning research and experiments.

## Usage examples

*Coming soon*

## Updating package on PyPI

This package was uploaded to PyPI following [the Packaging Python Projects tutorial in the official Python documentation](https://packaging.python.org/en/latest/tutorials/packaging-projects/).

To update PyPI with a newer version, update the `version` tag in [pyproject.toml](pyproject.toml), and then use the following commands:

```
python -m build
python -m twine upload dist/*
```

When prompted by `twine`, enter `__token__` as the username, and paste an API token from the [PyPI account management webpage](https://pypi.org/manage/account/) as the password (including the `pypi-` prefix).
