You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
TOML
36 lines
1.0 KiB
TOML
[tool.poetry]
|
|
name = "sponson"
|
|
version = "0.6.0"
|
|
description = "'systemd-nspawn' wrapper"
|
|
authors = ["Sam Black <samwwwblack@lapwing.org>"]
|
|
license = "GPL-3.0-or-later"
|
|
readme = "README.rst"
|
|
include = ["LICENCE", "selinux/", "services/"]
|
|
repository = "https://code.lapwing.org/devops/sponson"
|
|
classifiers = [
|
|
"Environment :: Console",
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: System Administrators",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
"Topic :: System :: Systems Administration",
|
|
]
|
|
|
|
[tool.poetry.scripts]
|
|
sponson = "sponson.cli:main"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
click = "^8.0"
|
|
PyYAML = "^6.0"
|
|
pydbus = { git = "https://code.lapwing.org/libraries/pydbus.git", branch = "develop" }
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|