1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-22 04:43:00 +00:00
kiwi-scp/pyproject.toml

25 lines
580 B
TOML
Raw Normal View History

2021-09-28 11:23:15 +00:00
[tool.poetry]
name = "kiwi-scp"
2021-10-13 00:16:09 +00:00
version = "0.2.0"
2021-09-28 11:23:15 +00:00
description = "kiwi is the simple tool for managing container servers."
authors = ["ldericher <40151420+ldericher@users.noreply.github.com>"]
[tool.poetry.dependencies]
python = "^3.6.1"
2021-09-28 11:23:15 +00:00
PyYAML = "^5.4.1"
2021-10-11 00:58:49 +00:00
pydantic = "^1.8.2"
click = "^8.0.3"
2021-09-28 11:23:15 +00:00
[tool.poetry.dev-dependencies]
virtualenv = "^20.8.1"
2021-10-14 02:34:09 +00:00
pytest = "^6.2.5"
toml = "^0.10.2"
2021-09-28 11:23:15 +00:00
[tool.poetry.scripts]
kiwi = "kiwi_scp.scripts.kiwi:main"
2021-10-14 02:34:09 +00:00
kiwi_next = "kiwi_scp.scripts.kiwi_next:main"
2021-09-28 11:23:15 +00:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"