Closed bruhnugget-nice closed 3 months ago
Your build backend produced a distribution with description that doesn't contain proper markup or type in its long description. PyPI won't accept it: https://packaging.python.org/en/latest/guides/making-a-pypi-friendly-readme/#including-your-readme-in-your-package-s-metadata.
You can use twine check --strict
to check that said metadata is valid. I see that you use a 3-years old version of this action, so it's possible that some old software from back then is unable to verify it correctly.
Update it and follow the guide to the letter: https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/.
I see you also don't have a PEP 517 spec declared in pyproject.toml
, which might be related to your issue.
https://packaging.python.org/en/latest/guides/modernize-setup-py-project/ https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
Repo: https://github.com/bruhnugget-nice/keras_saver
I tried to deploy a package on PyPI with my API token and everything set up, I even have a long_description attribute on my setup.py file, can someone explain what is going on here?