This is one way to create a wheel and get it published to pypi: https://www.realpythonproject.com/how-to-create-a-wheel-file-for-your-python-package-and-import-it-in-another-project/
e.g.
python setup.py bdist_wheel
There are several security advantages to building and publishing wheels even if the code is pure python.
I can't do a pull request to help you because the key step is running twine & publishing.
This is one way to create a wheel and get it published to pypi: https://www.realpythonproject.com/how-to-create-a-wheel-file-for-your-python-package-and-import-it-in-another-project/
e.g.
python setup.py bdist_wheelThere are several security advantages to building and publishing wheels even if the code is pure python.
I can't do a pull request to help you because the key step is running twine & publishing.