Hi,
I tried following the tutorial here https://packaging.python.org/tutorials/packaging-projects/.
I'm told to create a project containing, amongst other things, the file README.md. However, the template setup.py, references the file README.rst
with open("README.rst", "r") as fh:...
This causes the command
python setup.py sdist bdist_wheel
to fail., Changing to
with open("README.md", "r") as fh:...
works. Perhaps the text in the tutorial should be changed? Or is the setup.py template correct and I botched it some other place?