Skip to content

Trouble following packaging libraries tutorial #153

@Schmoobenstein

Description

@Schmoobenstein

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?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions