1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# How to publish this library Install the build tool: ```sh pip3 install build twine ``` Build the library: ```sh python3 -m build ``` Upload the library to PyPI: ```sh twine upload dist/* ```