diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-12-30 11:22:57 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-12-30 11:22:57 -0500 |
commit | aeb6b5bb75f5d823213a0bc8a331615d457d0a52 (patch) | |
tree | c577d5b325deec76c94f86d508fe8f297d1ee055 | |
parent | f63eb6d30f522c27571dc0347e21b2e493e511af (diff) | |
download | python-setuptools-bitbucket-aeb6b5bb75f5d823213a0bc8a331615d457d0a52.tar.gz |
Remove changes file from long_description.
-rwxr-xr-x | setup.py | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -90,15 +90,8 @@ class test(_test): readme_file = io.open('README.txt', encoding='utf-8') -# The release script adds hyperlinks to issues, -# but if the release script has not run, fall back to the source file -changes_names = 'CHANGES (links).txt', 'CHANGES.txt' -changes_fn = next(iter(filter(os.path.exists, changes_names))) -changes_file = io.open(changes_fn, encoding='utf-8') - with readme_file: - with changes_file: - long_description = readme_file.read() + '\n' + changes_file.read() + long_description = readme_file.read() package_data = { 'setuptools': ['script (dev).tmpl', 'script.tmpl', 'site-patch.py']} |