aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/dist.py
diff options
context:
space:
mode:
authorHenk-Jaap Wagenaar <wagenaarhenkjaap@gmail.com>2017-11-25 18:55:58 +0000
committerHenk-Jaap Wagenaar <wagenaarhenkjaap@gmail.com>2017-11-25 18:55:58 +0000
commit780a6f161ed4ce1026f5279c53c196d3bfdcec37 (patch)
treedf8f9f7553a8c4c0386c92cf61e9dce9aad94161 /setuptools/dist.py
parent553e21e12ca2ebe6ab0f597e69594b71271faecc (diff)
downloadexternal_python_setuptools-780a6f161ed4ce1026f5279c53c196d3bfdcec37.tar.gz
external_python_setuptools-780a6f161ed4ce1026f5279c53c196d3bfdcec37.tar.bz2
external_python_setuptools-780a6f161ed4ce1026f5279c53c196d3bfdcec37.zip
Rework how to handle long_description_content_type
Diffstat (limited to 'setuptools/dist.py')
-rw-r--r--setuptools/dist.py18
1 files changed, 5 insertions, 13 deletions
diff --git a/setuptools/dist.py b/setuptools/dist.py
index 48c7a456..8148df95 100644
--- a/setuptools/dist.py
+++ b/setuptools/dist.py
@@ -58,11 +58,8 @@ def write_pkg_file(self, file):
if self.download_url:
file.write('Download-URL: %s\n' % self.download_url)
- long_desc_content_type = getattr(
- self,
- 'long_description_content_type',
- None
- ) or 'UNKNOWN'
+ long_desc_content_type = \
+ self.long_description_content_type or 'UNKNOWN'
file.write('Description-Content-Type: %s\n' % long_desc_content_type)
long_desc = rfc822_escape(self.get_long_description())
@@ -324,20 +321,15 @@ class Distribution(Distribution_parse_config_files, _Distribution):
self.dist_files = []
self.src_root = attrs.pop("src_root", None)
self.patch_missing_pkg_info(attrs)
- self.long_description_content_type = attrs.get(
- 'long_description_content_type'
- )
self.dependency_links = attrs.pop('dependency_links', [])
self.setup_requires = attrs.pop('setup_requires', [])
for ep in pkg_resources.iter_entry_points('distutils.setup_keywords'):
vars(self).setdefault(ep.name, None)
_Distribution.__init__(self, attrs)
- try:
- self.metadata.long_description_content_type
- except AttributeError:
- self.metadata.long_description_content_type = \
- self.long_description_content_type
+ self.metadata.long_description_content_type = attrs.get(
+ 'long_description_content_type'
+ )
if isinstance(self.metadata.version, numbers.Number):
# Some people apparently take "version number" too literally :)