kerntop 0.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- kerntop-0.0.0/PKG-INFO +16 -0
- kerntop-0.0.0/README.md +7 -0
- kerntop-0.0.0/pyproject.toml +17 -0
- kerntop-0.0.0/src/kerntop/__init__.py +6 -0
kerntop-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: kerntop
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: A safe terminal UI for managing Linux kernels on apt-based systems
|
|
5
|
+
Author: Robin van der Noord
|
|
6
|
+
Author-email: Robin van der Noord <robinvandernoord@gmail.com>
|
|
7
|
+
Requires-Python: >=3.12
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# kerntop
|
|
11
|
+
|
|
12
|
+
`kerntop` is a terminal user interface for safely managing Linux kernels on
|
|
13
|
+
apt-based systems.
|
|
14
|
+
|
|
15
|
+
The initial `0.0.0` release establishes the command-line package. Kernel
|
|
16
|
+
discovery and package-management functionality are planned for later releases.
|
kerntop-0.0.0/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# kerntop
|
|
2
|
+
|
|
3
|
+
`kerntop` is a terminal user interface for safely managing Linux kernels on
|
|
4
|
+
apt-based systems.
|
|
5
|
+
|
|
6
|
+
The initial `0.0.0` release establishes the command-line package. Kernel
|
|
7
|
+
discovery and package-management functionality are planned for later releases.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["uv_build>=0.10.7,<0.11.0"]
|
|
3
|
+
build-backend = "uv_build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "kerntop"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "A safe terminal UI for managing Linux kernels on apt-based systems"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
authors = [
|
|
11
|
+
{ name = "Robin van der Noord", email = "robinvandernoord@gmail.com" }
|
|
12
|
+
]
|
|
13
|
+
requires-python = ">=3.12"
|
|
14
|
+
dependencies = []
|
|
15
|
+
|
|
16
|
+
[project.scripts]
|
|
17
|
+
kerntop = "kerntop:main"
|