-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 730 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (26 loc) · 730 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
29
30
[project]
name = "mk8sup"
version = "0.0.1"
authors = [
{ name="Abhishek Tiwari", email="abhishek@abhishek-tiwari.com" },
]
description = "Bootstrap Microk8s over SSH"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"click>=8.1",
"paramiko>=3.4.0"
]
[project.scripts]
mk8sup = "mk8sup:cli"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/abhishektiwari/k8s-bare-metal-microk8s"
Issues = "https://github.com/abhishektiwari/k8s-bare-metal-microk8s/issues"