blob: 3e3cc85412c5f72441561d3cef70673439b29288 (
plain) (
blame)
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
27
28
29
30
31
|
[tool.poetry]
name = "poetry-restrict-plugin"
version = "0.1.0a4"
description = "Restrict Poetry to a smaller privilege"
authors = ["Johannes Christ <[email protected]>"]
maintainers = ["Johannes Christ <[email protected]>"]
readme = "README.md"
packages = [{include = "poetry_restrict_plugin"}]
license = "LGPL-3.0-or-later"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python",
"Topic :: Security",
"Topic :: Software Development :: Build Tools"
]
repository = "https://git.jchri.st/jc/poetry-restrict-plugin"
keywords = ["poetry", "security", "landlock"]
[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"
|