-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 1.18 KB
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
35
36
37
# SPDX-License-Identifier: MPL-2.0
# SPDX-FileCopyrightText: 2023 igo95862
[project]
name = "lxns"
version = "0.1.0"
description = "Python library to interact with Linux kernel namespaces."
readme = "README.md"
license = {text = "MPL-2.0"}
authors = [
{name = "igo95862"}
]
requires-python = ">= 3.9"
keywords = ["linux", "namespace", "namespaces", "mount", "sandbox", "containers"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Security",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Operating System Kernels :: Linux",
]
[project.urls]
Homepage = "https://github.com/igo95862/python-lxns"
Documentation = "https://python-lxns.readthedocs.io/en/latest/"
Repository = "https://github.com/igo95862/python-lxns.git"
Issues = "https://github.com/igo95862/python-lxns/issues"
Changelog = "https://github.com/igo95862/python-lxns/blob/master/CHANGELOG.md"
[build-system]
build-backend = 'mesonpy'
requires = ['meson-python']
[tool.codespell]
skip = "venv,build"