Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
09e14c77
Commit
09e14c77
authored
Sep 03, 2017
by
Jason R. Coombs
Committed by
GitHub
Sep 03, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1075 from di/long_description_content_type
Add new long_description_content_type kwarg
parents
24f240e7
d344e165
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
66 additions
and
21 deletions
+66
-21
CHANGES.rst
CHANGES.rst
+4
-0
docs/setuptools.txt
docs/setuptools.txt
+22
-21
setup.py
setup.py
+1
-0
setuptools/command/egg_info.py
setuptools/command/egg_info.py
+4
-0
setuptools/dist.py
setuptools/dist.py
+10
-0
setuptools/tests/test_egg_info.py
setuptools/tests/test_egg_info.py
+25
-0
No files found.
CHANGES.rst
View file @
09e14c77
v36
.4.0
-------
*
#
1075
:
Add
new
``
Description
-
Content
-
Type
``
metadata
field
.
`
See
here
for
documentation
on
how
to
use
this
field
.
<
https
://
packaging
.
python
.
org
/
specifications
/#
description
-
content
-
type
>`
_
*
#
1068
:
Sort
files
and
directories
when
building
eggs
for
deterministic
order
.
...
...
docs/setuptools.txt
View file @
09e14c77
...
...
@@ -2394,27 +2394,28 @@ Metadata
Aliases given below are supported for compatibility reasons,
but not advised.
================= ================= =====
Key Aliases Accepted value type
================= ================= =====
name str
version attr:, str
url home-page str
download_url download-url str
author str
author_email author-email str
maintainer str
maintainer_email maintainer-email str
classifiers classifier file:, list-comma
license file:, str
description summary file:, str
long_description long-description file:, str
keywords list-comma
platforms platform list-comma
provides list-comma
requires list-comma
obsoletes list-comma
================= ================= =====
============================== ================= =====
Key Aliases Accepted value type
============================== ================= =====
name str
version attr:, str
url home-page str
download_url download-url str
author str
author_email author-email str
maintainer str
maintainer_email maintainer-email str
classifiers classifier file:, list-comma
license file:, str
description summary file:, str
long_description long-description file:, str
long_description_content_type str
keywords list-comma
platforms platform list-comma
provides list-comma
requires list-comma
obsoletes list-comma
============================== ================= =====
.. note::
...
...
setup.py
View file @
09e14c77
...
...
@@ -95,6 +95,7 @@ setup_params = dict(
author
=
"Python Packaging Authority"
,
author_email
=
"distutils-sig@python.org"
,
long_description
=
long_description
,
long_description_content_type
=
'text/x-rst; charset=UTF-8'
,
keywords
=
"CPAN PyPI distutils eggs package management"
,
url
=
"https://github.com/pypa/setuptools"
,
src_root
=
None
,
...
...
setuptools/command/egg_info.py
View file @
09e14c77
...
...
@@ -599,6 +599,10 @@ def write_pkg_info(cmd, basename, filename):
metadata
=
cmd
.
distribution
.
metadata
metadata
.
version
,
oldver
=
cmd
.
egg_version
,
metadata
.
version
metadata
.
name
,
oldname
=
cmd
.
egg_name
,
metadata
.
name
metadata
.
long_description_content_type
=
getattr
(
cmd
.
distribution
,
'long_description_content_type'
)
try
:
# write unescaped data to PKG-INFO, so older pkg_resources
# can still parse it
...
...
setuptools/dist.py
View file @
09e14c77
...
...
@@ -58,6 +58,13 @@ 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'
file
.
write
(
'Description-Content-Type: %s
\
n
'
%
long_desc_content_type
)
long_desc
=
rfc822_escape
(
self
.
get_long_description
())
file
.
write
(
'Description: %s
\
n
'
%
long_desc
)
...
...
@@ -317,6 +324,9 @@ class Distribution(Distribution_parse_config_files, _Distribution):
self.dist_files = []
self.src_root = attrs and attrs.pop("src_root", None)
self.patch_missing_pkg_info(attrs)
self.long_description_content_type = _attrs_dict.get(
'
long_description_content_type
'
)
# Make sure we have any eggs needed to interpret '
attrs
'
if attrs is not None:
self.dependency_links = attrs.pop('
dependency_links
', [])
...
...
setuptools/tests/test_egg_info.py
View file @
09e14c77
...
...
@@ -398,6 +398,31 @@ class TestEggInfo(object):
self
.
_run_install_command
(
tmpdir_cwd
,
env
)
assert
glob
.
glob
(
os
.
path
.
join
(
env
.
paths
[
'lib'
],
'barbazquux*'
))
==
[]
def
test_long_description_content_type
(
self
,
tmpdir_cwd
,
env
):
# Test that specifying a `long_description_content_type` keyword arg to
# the `setup` function results in writing a `Description-Content-Type`
# line to the `PKG-INFO` file in the `<distribution>.egg-info`
# directory.
# `Description-Content-Type` is described at
# https://github.com/pypa/python-packaging-user-guide/pull/258
self
.
_setup_script_with_requires
(
"""long_description_content_type='text/markdown',"""
)
environ
=
os
.
environ
.
copy
().
update
(
HOME
=
env
.
paths
[
'home'
],
)
code
,
data
=
environment
.
run_setup_py
(
cmd
=
[
'egg_info'
],
pypath
=
os
.
pathsep
.
join
([
env
.
paths
[
'lib'
],
str
(
tmpdir_cwd
)]),
data_stream
=
1
,
env
=
environ
,
)
egg_info_dir
=
os
.
path
.
join
(
'.'
,
'foo.egg-info'
)
with
open
(
os
.
path
.
join
(
egg_info_dir
,
'PKG-INFO'
))
as
pkginfo_file
:
pkg_info_lines
=
pkginfo_file
.
read
().
split
(
'
\
n
'
)
expected_line
=
'Description-Content-Type: text/markdown'
assert
expected_line
in
pkg_info_lines
def
test_python_requires_egg_info
(
self
,
tmpdir_cwd
,
env
):
self
.
_setup_script_with_requires
(
"""python_requires='>=2.7.12',"""
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment