-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move long_description metadata to pyproject.toml (#18172)
Fixes #18168
- Loading branch information
Showing
2 changed files
with
13 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,17 @@ build-backend = "setuptools.build_meta" | |
[project] | ||
name = "mypy" | ||
description = "Optional static typing for Python" | ||
readme = {text = """ | ||
Mypy -- Optional Static Typing for Python | ||
========================================= | ||
Add type annotations to your Python programs, and use mypy to type | ||
check them. Mypy is essentially a Python linter on steroids, and it | ||
can catch many programming errors by analyzing your program, without | ||
actually having to run it. Mypy has a powerful type system with | ||
features such as type inference, gradual typing, generics and union | ||
types. | ||
""", content-type = "text/x-rst"} | ||
authors = [{name = "Jukka Lehtosalo", email = "[email protected]"}] | ||
license = {text = "MIT"} | ||
classifiers = [ | ||
|
@@ -41,7 +52,7 @@ dependencies = [ | |
"mypy_extensions>=1.0.0", | ||
"tomli>=1.1.0; python_version<'3.11'", | ||
] | ||
dynamic = ["version", "readme"] | ||
dynamic = ["version"] | ||
|
||
[project.optional-dependencies] | ||
dmypy = ["psutil>=4.0"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters