rrs 0.1.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.
rrs-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,4 @@
1
+ Metadata-Version: 2.4
2
+ Name: rrs
3
+ Version: 0.1.0
4
+ Summary: Outil interactif rrs
@@ -0,0 +1,15 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "rrs"
7
+ version = "0.1.0"
8
+ description = "Outil interactif rrs"
9
+ dependencies = []
10
+
11
+ [project.scripts]
12
+ rrs = "rrs.cli:main"
13
+
14
+ [tool.setuptools]
15
+ packages = ["rrs"]
@@ -0,0 +1 @@
1
+ # init
rrs-0.1.0/rrs/cli.py ADDED
@@ -0,0 +1,22 @@
1
+ import sys
2
+
3
+ def main():
4
+ print("=" * 40)
5
+ print(" 🚀 MON SUPER TOOL : RRS v0.1.0")
6
+ print("=" * 40)
7
+ print("1. Lancer l'action principale")
8
+ print("2. Afficher les informations")
9
+ print("3. Quitter")
10
+ print("-" * 40)
11
+
12
+ choix = input("Choisis une option (1-3) : ")
13
+
14
+ if choix == "1":
15
+ print("✨ Action exécutée avec succès !")
16
+ elif choix == "2":
17
+ print("ℹ️ Cet outil est géré de manière 100% automatique.")
18
+ else:
19
+ print("👋 Au revoir !")
20
+
21
+ if __name__ == "__main__":
22
+ main()
@@ -0,0 +1,4 @@
1
+ Metadata-Version: 2.4
2
+ Name: rrs
3
+ Version: 0.1.0
4
+ Summary: Outil interactif rrs
@@ -0,0 +1,8 @@
1
+ pyproject.toml
2
+ rrs/__init__.py
3
+ rrs/cli.py
4
+ rrs.egg-info/PKG-INFO
5
+ rrs.egg-info/SOURCES.txt
6
+ rrs.egg-info/dependency_links.txt
7
+ rrs.egg-info/entry_points.txt
8
+ rrs.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ rrs = rrs.cli:main
@@ -0,0 +1 @@
1
+ rrs
rrs-0.1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+