-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 755 Bytes
/
pyproject.toml
File metadata and controls
28 lines (24 loc) · 755 Bytes
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
[tool.poetry]
name = "hcloud-selfdestruct"
version = "0.1.1"
description = "cli tool to self destruct a hetzner cloud server"
authors = ["worldworm"]
readme = "README.md"
repository = "https://github.com/worldworm/hcloud-selfdestruct"
homepage = "https://github.com/worldworm/hcloud-selfdestruct"
keywords = ["selfdestruct", "hcloud", "hetzner"]
license = "MIT"
packages = [{include = "hcloud_selfdestruct"}]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
hcloud = "^1.18.2"
apprise = "^1.2.1"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.2.1"
paramiko = "^3.0.0"
termcolor = "^2.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
hcloud-selfdestruct = 'hcloud_selfdestruct:main'