Metadata-Version: 2.1
Name: reliable-queue
Version: 0.0.8
Summary: A reliable queue for the Manycore-Mail project
Author-email: Nicolas Toper <ntoper@manycore.io>, Marcus Engene <marcus@manycore.io>
Maintainer-email: Nicolas Toper <ntoper@manycore.io>, Marcus Engene <marcus@manycore.io>
Project-URL: Homepage, https://github.com/manycore-com/Manycore-ReliableQueue
Project-URL: Bug Tracker, https://github.com/manycore-com/Manycore-ReliableQueue/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
















# Building distribution
https://packaging.python.org/en/latest/tutorials/packaging-projects/


requires: 
python3 -m pip install --upgrade build

...which installs tomli, pep517, build

python -m build

...which outputs files to dist/ (in .gitignore)

```shell
python3 -m pip install --upgrade twine
python3 -m twine upload --repository pypi dist/*
```
