aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 8ab3b290bdcf22f9d9b90be83c8f99301a5d853f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[tool.poetry]
name = "poetry-restrict-plugin"
version = "0.1.0"
description = "Sandbox Poetry to a safe set of operations"
authors = ["Johannes Christ <[email protected]>"]
readme = "README.md"
packages = [{include = "poetry_restrict_plugin"}]

[tool.poetry.dependencies]
python = "^3.11"
poetry = "^1.8.3"
landlock = {version = "^1.0.0.dev4", platform = "linux"}

[tool.poetry.plugins."poetry.plugin"]
restrict = "poetry_restrict_plugin.plugin:RestrictPlugin"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"