We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74102f8 commit 7b7666cCopy full SHA for 7b7666c
3 files changed
build/lib/robust_python_demo/__init__.py
@@ -0,0 +1 @@
1
+"""Robust Python Demo."""
build/lib/robust_python_demo/__main__.py
@@ -0,0 +1,15 @@
+"""Command-line interface."""
2
+
3
+import typer
4
5
6
+app: typer.Typer = typer.Typer()
7
8
9
+@app.command(name="robust-python-demo")
10
+def main() -> None:
11
+ """Robust Python Demo."""
12
13
14
+if __name__ == "__main__":
15
+ app() # pragma: no cover
build/lib/robust_python_demo/py.typed
0 commit comments