We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5f4c83a + 48b96a2 commit 0c144e1Copy full SHA for 0c144e1
pyproject.toml
@@ -3,7 +3,17 @@
3
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
4
[build-system]
5
build-backend = "setuptools.build_meta"
6
-requires = ["setuptools"]
+requires = [
7
+ # 61.0.0 was the first version of setuptools to offer a full-fledged
8
+ # backend that uses pyproject.toml for metadata configuration (in
9
+ # compliance with PEP 621):
10
+ # https://setuptools.pypa.io/en/stable/history.html#v61-0-0
11
+ #
12
+ # 77.0.0 was the first version of setuptools to support license
13
+ # expressions (in compliance with PEP 639):
14
+ # https://setuptools.pypa.io/en/stable/history.html#v77-0-0
15
+ "setuptools>=77.0.0"
16
+]
17
18
[project]
19
authors = [
0 commit comments