1 From f00dd220346773bc088d403847ee7f06f2b4c30a Mon Sep 17 00:00:00 2001
2 From: Tim Orling <tim.orling@konsulko.com>
3 Date: Fri, 18 Feb 2022 11:09:16 -0800
4 Subject: [PATCH] Backport pyproject.toml from flit-backend branch
6 This allows us to bootstrap wheels and PEP-517 packaging.
8 Upstream-Status: Backport from flit-backend branch
9 https://raw.githubusercontent.com/pypa/wheel/4f6ba78fede38a8d9e35a14e38377a121033afb3/pyproject.toml
11 Signed-off-by: Tim Orling <tim.orling@konsulko.com>
13 pyproject.toml | 78 ++++++++++++++++++++++++++++++++++++++++++++++++++
14 1 file changed, 78 insertions(+)
15 create mode 100644 pyproject.toml
17 diff --git a/pyproject.toml b/pyproject.toml
19 index 0000000..749b8de
24 +requires = ["flit_core >=3.2,<4"]
25 +build-backend = "flit_core.buildapi"
29 +description = "A built-package format for Python"
30 +readme = "README.rst"
32 + "Development Status :: 5 - Production/Stable",
33 + "Intended Audience :: Developers",
34 + "Topic :: System :: Archiving :: Packaging",
35 + "License :: OSI Approved :: MIT License",
36 + "Programming Language :: Python",
37 + "Programming Language :: Python :: 3 :: Only",
38 + "Programming Language :: Python :: 3.7",
39 + "Programming Language :: Python :: 3.8",
40 + "Programming Language :: Python :: 3.9",
41 + "Programming Language :: Python :: 3.10"
43 +authors = [{name = "Daniel Holth", email = "dholth@fastmail.fm"}]
44 +maintainers = [{name = "Alex Grönholm", email = "alex.gronholm@nextday.fi"}]
45 +keywords = ["wheel", "packaging"]
46 +license = {file = "LICENSE.txt"}
47 +requires-python = ">=3.7"
49 + "setuptools >= 45.2.0"
51 +dynamic = ["version"]
54 +Documentation = "https://wheel.readthedocs.io/"
55 +Changelog = "https://wheel.readthedocs.io/en/stable/news.html"
56 +"Issue Tracker" = "https://github.com/pypa/wheel/issues"
59 +wheel = "wheel.cli:main"
61 +[project.entry-points."distutils.commands"]
62 +bdist_wheel = "wheel.bdist_wheel:bdist_wheel"
64 +[project.optional-dependencies]
74 + ".pre-commit-config.yaml",
79 +target-version = ['py37']
81 +^/src/wheel/vendored/
87 +skip_gitignore = true
92 +[tool.pytest.ini_options]
97 +omit = ["*/vendored/*"]
99 +[tool.coverage.report]