diff options
author | Ryan Gonzalez <kirbyfan64@users.noreply.github.com> | 2017-04-14 09:00:25 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-04-14 09:00:25 (GMT) |
commit | f9f87f0934ca570293ba7194bed3448a7f9bf39c (patch) | |
tree | 7c59d528dd172d6b331ce0ab0afdfaf687f75318 /Lib/distutils | |
parent | 947629916a5ecb1f6f6792e9b9234e084c5bf274 (diff) | |
download | cpython-f9f87f0934ca570293ba7194bed3448a7f9bf39c.zip cpython-f9f87f0934ca570293ba7194bed3448a7f9bf39c.tar.gz cpython-f9f87f0934ca570293ba7194bed3448a7f9bf39c.tar.bz2 |
bpo-11913: Add README.rst to the distutils standard READMEs list (#563)
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/command/sdist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py index 180e286..52eaa15 100644 --- a/Lib/distutils/command/sdist.py +++ b/Lib/distutils/command/sdist.py @@ -96,7 +96,7 @@ class sdist(Command): sub_commands = [('check', checking_metadata)] - READMES = 'README', 'README.txt' + READMES = ('README', 'README.txt', 'README.rst') def initialize_options(self): # 'template' and 'manifest' are, respectively, the names of |