Skip to content

Commit

Permalink
Move setuptools config from setup.cfg with pyproject.toml
Browse files Browse the repository at this point in the history
Supported since setuptools 61.0.0, more standard.
  • Loading branch information
bluetech committed Jul 7, 2023
1 parent 780aa14 commit 0601a1f
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 31 deletions.
31 changes: 30 additions & 1 deletion pyproject.toml
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"]
30 changes: 0 additions & 30 deletions setup.cfg

This file was deleted.

0 comments on commit 0601a1f

Please sign in to comment.