blob: cdd17c6d74a4b37e45a7b6040ff568fc7f7e4910 (
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
32
33
34
|
[tool.poetry]
name = "poetry-restrict-plugin"
version = "0.1.0a3"
description = "Restrict Poetry to a smaller privilege"
authors = ["Johannes Christ <[email protected]>"]
readme = "README.md"
packages = [{include = "poetry_restrict_plugin"}]
[project]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python",
"Topic :: Software Development :: Build Tools"
]
maintainers = [
{name = "Johannes Christ", email = "[email protected]"}
]
[project.urls]
repository = "https://git.jchri.st/jc/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"
|