Skip to content

Commit e5e531f

Browse files
authored
Merge pull request #54 from kurtmckee/update-pyproject.toml
Migrate to PEP 621 metadata
2 parents d600250 + 584d7c8 commit e5e531f

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed

pyproject.toml

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,16 @@
1-
[build-system]
2-
requires = ["poetry-core"]
3-
build-backend = "poetry.core.masonry.api"
4-
5-
6-
# poetry
7-
# ------
8-
9-
[tool.poetry]
1+
[project]
102
name = "detect_pythons"
113
version = "1.1.0"
124
description = "A GitHub action to detect installed Pythons. Suitable for cache-busting."
13-
authors = ["Kurt McKee <[email protected]>"]
5+
authors = [{ name = "Kurt McKee", email = "[email protected]" }]
146
license = "MIT"
157
readme = "README.rst"
8+
requires-python = ">=3.8"
9+
classifiers = ["Private :: Do not Upload"]
1610

17-
[tool.poetry.dependencies]
18-
python = ">=3.8"
11+
[build-system]
12+
requires = ["poetry-core>=2.0.0,<3.0.0"]
13+
build-backend = "poetry.core.masonry.api"
1914

2015

2116
# chipshot

0 commit comments

Comments
 (0)