-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
100 lines (87 loc) · 3.25 KB
/
pyproject.toml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[tool.poetry]
name = "smol_k8s_lab"
version = "5.18.0"
description = "CLI and TUI to quickly install slimmer Kubernetes distros and then manage apps declaratively using Argo CD"
authors = ["Jesse Hitch <[email protected]>",
"Max Roby <[email protected]>"]
readme = "README.md"
packages = [{include = "smol_k8s_lab"}]
license = "AGPL-3.0-or-later"
homepage = "https://small-hack.github.io/smol-k8s-lab"
repository = "http://github.com/small-hack/smol-k8s-lab"
documentation = "https://small-hack.github.io/smol-k8s-lab"
keywords = ["kubernetes", "homelab", "kind", "k3s", "k8s"]
classifiers = ["Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Intended Audience :: End Users/Desktop",
"Topic :: System :: Installation/Setup",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)"]
include = ["smol_k8s_lab/config/kind/kind_cluster_config.yaml",
"smol_k8s_lab/config/default_config.yaml",
"smol_k8s_lab/config/audio/en.yml",
"smol_k8s_lab/config/audio/nl.yml",
"audio/en.tar.gz",
"audio/nl.tar.gz"]
[tool.poetry.urls]
"Bug Tracker" = "http://github.com/small-hack/smol-k8s-lab/issues"
[tool.poetry.dependencies]
bcrypt = "^4.2"
click = "^8.1"
cryptography = "^43.0"
kubernetes = "^31"
minio = "^7.2"
pyfiglet = "^1.0"
pyjwt = "^2.9"
python = ">=3.11,<3.13"
pyyaml = "^6.0"
requests = "^2.32"
rich = "^13.9"
ruamel-yaml = "^0.18"
ruamel-yaml-string = "^0.1"
textual = "^0.84"
xdg-base-dirs = "^6.0"
pygame = "^2.5"
python-ulid = "^3.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.5"
mkdocs-video = "^1.5"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
deptry = "^0.20"
textual-dev = "^1.6"
pytest-textual-snapshot = "^1.0"
poethepoet = "^0.29.0"
# for creating app images: https://pypi.org/project/poetry-plugin-appimage/
# poetry-plugin-appimage = "^0.0.4"
# [tool.poetry-plugin-appimage]
# miniconda = "24.3.0"
# python = "3.12"
# categories = "ConsoleOnly;"
[tool.poetry.group.audio]
optional = true
# this group is only needed for development
[tool.poetry.group.audio.dependencies]
coqui-tts = "^0.24"
# note: this still requires you to install ffmpeg
pydub = "^0.25.1"
[tool.poetry.plugins."smol-k8s-lab.application.plugin"]
"smol-k8s-lab" = "smol_k8s_lab:main"
"smol-tts" = "smol_tts:tts_gen"
[tool.poetry.scripts]
smol-k8s-lab = "smol_k8s_lab:main"
smol-tts = "smol_tts:tts_gen"
[tool.poe.poetry_hooks]
pre_build = "create-appimage"
[tool.poe.tasks.create-appimage]
cmd = ""
help = "Generate an appimage to test"
# print_result = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"