23 lines
606 B
TOML
23 lines
606 B
TOML
[tool.poetry]
|
|
name = "kiwi-scp"
|
|
version = "0.3.0"
|
|
description = "kiwi is the simple tool for managing container servers."
|
|
license = "MIT"
|
|
authors = ["Jörn-Michael Miehe <40151420+ldericher@users.noreply.github.com>"]
|
|
maintainers = [
|
|
"Bryan Hoffmann <unbekannt42@web.de>",
|
|
"Snandwich <129939557+Snandwich@users.noreply.github.com>",
|
|
]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
kiwi-scp-core = {path="..", develop=true}
|
|
python = "^3.9"
|
|
virtualenv = "^20.26.1"
|
|
|
|
[tool.poetry.scripts]
|
|
kiwi = "kiwi_scp.main:main"
|
|
|
|
[build-system]
|
|
build-backend = "poetry.core.masonry.api"
|
|
requires = ["poetry-core"]
|