awst 0.1.0__py3-none-any.whl

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.
awst/__init__.py ADDED
@@ -0,0 +1,5 @@
1
+ from awst.skeleton_app import SkeletonApp
2
+
3
+
4
+ def main() -> None:
5
+ SkeletonApp().run()
awst/skeleton_app.py ADDED
@@ -0,0 +1,18 @@
1
+ """
2
+ Skeleton app for testing the awstui package.
3
+ """
4
+
5
+ from typing import Self
6
+
7
+ from textual.app import App, ComposeResult
8
+ from textual.widgets import Label
9
+
10
+
11
+ class SkeletonApp(App):
12
+ CSS = """
13
+ Screen { align: center middle; }
14
+ Label { width: auto; }
15
+ """
16
+
17
+ def compose(self: Self) -> ComposeResult:
18
+ yield Label("Hello AWS TUI")
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.3
2
+ Name: awst
3
+ Version: 0.1.0
4
+ Summary: Add your description here
5
+ Author: Bence Molnár
6
+ Requires-Dist: textual>=8.2.8
7
+ Requires-Python: >=3.14
8
+ Description-Content-Type: text/markdown
9
+
10
+ # awst
11
+ AWS Console Terminal UI - based on Textual
@@ -0,0 +1,6 @@
1
+ awst/__init__.py,sha256=41B8_1qOG17mBBl8Sfu9vshOa8pCfvmIVUPLge_r5nI,88
2
+ awst/skeleton_app.py,sha256=f1oS4I7RhNbdlNrgjVa-0B_vpHIdQfDy01pUaSDkpC0,352
3
+ awst-0.1.0.dist-info/WHEEL,sha256=uOqnPWqgFlbov4NeTCercq7cBQ2UN7xh5fiW55lOnAg,81
4
+ awst-0.1.0.dist-info/entry_points.txt,sha256=LkGiF-aVZy3EuwsJyXzyWsI5DjeXfS3EpvQ_36cYd98,36
5
+ awst-0.1.0.dist-info/METADATA,sha256=hI16y-_OsaMnNY1lAhVW9s1Nmrcf1t1r8Vyl8lKI5Pk,250
6
+ awst-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: uv 0.11.26
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ awst = awst:main
3
+