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 +4 -0
- rrs-0.1.0/pyproject.toml +15 -0
- rrs-0.1.0/rrs/__init__.py +1 -0
- rrs-0.1.0/rrs/cli.py +22 -0
- rrs-0.1.0/rrs.egg-info/PKG-INFO +4 -0
- rrs-0.1.0/rrs.egg-info/SOURCES.txt +8 -0
- rrs-0.1.0/rrs.egg-info/dependency_links.txt +1 -0
- rrs-0.1.0/rrs.egg-info/entry_points.txt +2 -0
- rrs-0.1.0/rrs.egg-info/top_level.txt +1 -0
- rrs-0.1.0/setup.cfg +4 -0
rrs-0.1.0/PKG-INFO
ADDED
rrs-0.1.0/pyproject.toml
ADDED
|
@@ -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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
rrs
|
rrs-0.1.0/setup.cfg
ADDED