-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (22 loc) · 659 Bytes
/
pyproject.toml
File metadata and controls
26 lines (22 loc) · 659 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[tool.poetry]
name = "action-setup-python"
version = "0.0.0"
authors = ["Kyle Finley <kyle@finley.sh>"]
description = "A composite action for setting up python."
license = "Apache-2.0"
package-mode = false
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.1.0"
[tool.tomlsort]
all = true
in_place = true
sort_first = ["tool", "tool.poetry"]
spaces_before_inline_comment = 2
trailing_comma_inline_array = true
overrides."tool.poetry".first = ["name", "version"]
overrides."tool.poetry.dependencies".first = ["python"]
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=2.1.1"]