-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (65 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
81 lines (65 loc) · 1.72 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[project]
name = "nspawn"
description = "Containers with systemd-nspawn"
version = "0.8.4"
# dynamic = [ "version" ] # TODO
requires-python = ">=3.11"
readme = "readme.md"
license.file = "licence"
keywords = [
"nspawn",
"container",
"systemd",
"systemd-nspawn",
]
authors = [
{ name="Andrei Pozolotin", email="andrei.pozolotin@gmail.com" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Systems Administration",
"Topic :: Terminals",
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Utilities",
]
dependencies = [
"pyyaml>=6",
"jinja2>=3",
]
[project.optional-dependencies]
test = [
"tox",
"pytest",
]
[project.urls]
Source = "https://github.com/random-python/nspawn"
Homepage = "https://github.com/random-python/nspawn"
Documentation = "https://github.com/random-python/nspawn"
[project.scripts]
nspawn-build = "nspawn.app.engine.build:main"
nspawn-setup = "nspawn.app.engine.setup:main"
nspawn-hatch = "nspawn.app.hatcher.main:main"
nspawn-enter = "nspawn.app.nsenter.main:main"
[build-system]
requires = [
"setuptools>=76",
"setuptools_scm>=8",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = [ "src/main" ]
include = ["nspawn*"]
namespaces = false
[tool.setuptools_scm]
# enable