-
-
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 metadata to pyproject + drop Python 3.7 (#53)
Co-authored-by: Ran Benita <ran@unusedvar.com>
- Loading branch information
Showing
6 changed files
with
47 additions
and
51 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
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 +1,6 @@ | ||
include LICENSE | ||
# files necessary for testing sdist | ||
graft tests | ||
include tox.ini | ||
|
||
global-exclude *.py[cod] | ||
global-exclude .DS_Store |
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[build-system] | ||
requires = ["setuptools>=75.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" | ||
authors = [ | ||
{name = "The mypy developers", email = "jukka.lehtosalo@iki.fi"} | ||
] | ||
license = {text = "MIT"} | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
"Topic :: Software Development", | ||
] | ||
requires-python = ">=3.8" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/python/mypy_extensions" | ||
|
||
[tool.setuptools] | ||
py-modules = ["mypy_extensions"] |
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