Skip to content

Commit 9ac0e9d

Browse files
authored
Fix bad filename for README in packaging tutorial (pypa#507)
1 parent 47975c4 commit 9ac0e9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/tutorials/packaging-projects.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ the values if you want:
7070
7171
import setuptools
7272
73-
with open("README.rst", "r") as fh:
73+
with open("README.md", "r") as fh:
7474
long_description = fh.read()
7575
7676
setuptools.setup(
@@ -343,4 +343,4 @@ some things you can do:
343343
and `poetry`_.
344344

345345
.. _hatch: https://github.com/ofek/hatch
346-
.. _poetry: https://github.com/sdispater/poetry
346+
.. _poetry: https://github.com/sdispater/poetry

0 commit comments

Comments
 (0)