Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 722e7ea

Browse files
authored
Improve distribution package (#1097)
1 parent 07a1037 commit 722e7ea

File tree

2 files changed

+9
-17
lines changed

2 files changed

+9
-17
lines changed

MANIFEST.in

Lines changed: 0 additions & 3 deletions
This file was deleted.

pyproject.toml

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,7 @@ build-backend = "flit_core.buildapi"
88
name = "typing_extensions"
99
version = "4.1.1"
1010
description = "Backported and Experimental Type Hints for Python 3.6+"
11-
readme.text = """\
12-
Typing Extensions -- Backported and Experimental Type Hints for Python
13-
14-
The ``typing`` module was added to the standard library in Python 3.5, but
15-
many new features have been added to the module since then.
16-
This means users of older Python versions who are unable to upgrade will not be
17-
able to take advantage of new types added to the ``typing`` module, such as
18-
``typing.Protocol`` or ``typing.TypedDict``.
19-
20-
The ``typing_extensions`` module contains backports of these changes.
21-
Experimental types that may eventually be added to the ``typing``
22-
module are also included in ``typing_extensions``.
23-
"""
24-
readme.content-type = "text/x-rst"
11+
readme = "README.rst"
2512
requires-python = ">=3.6"
2613
urls.Home = "https://github.com/python/typing/blob/master/typing_extensions/README.rst"
2714
license.file = "LICENSE"
@@ -61,3 +48,11 @@ classifiers = [
6148
[[project.authors]]
6249
name = "Guido van Rossum, Jukka Lehtosalo, Łukasz Langa, Michael Lee"
6350
51+
52+
[tool.flit.sdist]
53+
include = [
54+
"CHANGELOG",
55+
"README.rst",
56+
"*/test*.py"
57+
]
58+
exclude = []

0 commit comments

Comments
 (0)