PAC2MAN 1.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.
pac2man-1.0.0/PKG-INFO ADDED
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.5
2
+ Name: PAC2MAN
3
+ Version: 1.0.0
4
+ Requires-Python: >=3.10
5
+ Requires-Dist: rich
@@ -0,0 +1,22 @@
1
+ from rich.console import Console
2
+ from rich.panel import Panel
3
+ from rich.table import Table
4
+ from art import text2art
5
+ from rich import box
6
+
7
+ console = Console()
8
+
9
+ def main():
10
+ console.print(
11
+ Panel(
12
+ "[red][0][/red] menu prova 1\n"
13
+ "[red][1][/red] menu prova 2\n"
14
+ "[red][2][/red] menu prova 3\n",
15
+ title="dashboard",
16
+ border_style="yellow",
17
+ box = box.DOUBLE
18
+ )
19
+ )
20
+ messaggio = input("seleziona un numero:")
21
+ if __name__ == "__main__":
22
+ main()
@@ -0,0 +1,4 @@
1
+ Metadata-Version: 2.4
2
+ Name: dashboard
3
+ Version: 1.0.0
4
+ Requires-Dist: rich
@@ -0,0 +1,8 @@
1
+ programma.py
2
+ pyproject.toml
3
+ dashboard.egg-info/PKG-INFO
4
+ dashboard.egg-info/SOURCES.txt
5
+ dashboard.egg-info/dependency_links.txt
6
+ dashboard.egg-info/entry_points.txt
7
+ dashboard.egg-info/requires.txt
8
+ dashboard.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ dashboard = programma:main
@@ -0,0 +1 @@
1
+ rich
@@ -0,0 +1 @@
1
+ programma
@@ -0,0 +1,22 @@
1
+ from rich.console import Console
2
+ from rich.panel import Panel
3
+ from rich.table import Table
4
+ from art import text2art
5
+ from rich import box
6
+
7
+ console = Console()
8
+
9
+ def main():
10
+ console.print(
11
+ Panel(
12
+ "[red][0][/red] menu prova 1\n"
13
+ "[red][1][/red] menu prova 2\n"
14
+ "[red][2][/red] menu prova 3\n",
15
+ title="dashboard",
16
+ border_style="yellow",
17
+ box = box.DOUBLE
18
+ )
19
+ )
20
+ messaggio = input("seleziona un numero:")
21
+ if __name__ == "__main__":
22
+ main()
@@ -0,0 +1,16 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "PAC2MAN"
7
+ version = "v1.0.0"
8
+ requires-python = ">=3.10"
9
+ dependencies = ["rich"]
10
+
11
+ [project.scripts]
12
+ PAC2MAN = "programma:main"
13
+
14
+
15
+ [tool.hatch.build.targets.wheel]
16
+ include = ["programma.py"]