blob: 4ecc4e76eb156eaa996330f80100f226485872e8 (
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.0a1"
description = "Restrict Poetry to a smaller privilege"
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"
|