-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move setuptools config from setup.cfg with pyproject.toml
Supported since setuptools 61.0.0, more standard.
- Loading branch information
Showing
2 changed files
with
30 additions
and
31 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 |
---|---|---|
@@ -1,3 +1,32 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
requires = ["setuptools>=61.0.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "mypy_extensions" | ||
version = "1.0.0-dev" | ||
description = "Type system extensions for programs checked with the mypy type checker." | ||
readme = "README.md" | ||
license = {file = "LICENSE"} | ||
requires-python = ">=3.7" | ||
authors = [ | ||
{name = "The mypy developers", email = "[email protected]"}, | ||
] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Topic :: Software Development", | ||
] | ||
[project.urls] | ||
Repository = "https://github.com/python/mypy_extensions" | ||
|
||
[tool.setuptools] | ||
py-modules = ["mypy_extensions"] |