aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-12-30 11:22:57 -0500
committerJason R. Coombs <jaraco@jaraco.com>2014-12-30 11:22:57 -0500
commitede1df71401a16c74dea9c1962bd1085538ac3d7 (patch)
tree07e8458b6bfb479e3a02d2904a6a44239225d159 /setup.py
parenta3203de1a3d8745b7431cd3ef4704f7eb3d6e529 (diff)
downloadexternal_python_setuptools-ede1df71401a16c74dea9c1962bd1085538ac3d7.tar.gz
external_python_setuptools-ede1df71401a16c74dea9c1962bd1085538ac3d7.tar.bz2
external_python_setuptools-ede1df71401a16c74dea9c1962bd1085538ac3d7.zip
Remove changes file from long_description.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/setup.py b/setup.py
index f441815f..544f18f5 100755
--- a/setup.py
+++ b/setup.py
@@ -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']}