nepher-cli 0.2.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.
@@ -0,0 +1,49 @@
1
+ """simstore command group — coming soon placeholder."""
2
+
3
+ from __future__ import annotations
4
+
5
+ import click
6
+ from rich.console import Console
7
+
8
+ console = Console(stderr=True)
9
+
10
+ _COMING_SOON = (
11
+ "[bold]SimStore[/bold] is coming soon.\n\n"
12
+ "SimStore will let you browse, purchase, and publish Isaac Lab simulation "
13
+ "assets directly from the command line.\n\n"
14
+ "Follow [link=https://nepher.ai]nepher.ai[/link] for updates."
15
+ )
16
+
17
+
18
+ @click.group("simstore")
19
+ def simstore() -> None:
20
+ """SimStore — buy and sell Isaac Lab simulation assets. (Coming soon)"""
21
+
22
+
23
+ @simstore.command("status")
24
+ def simstore_status() -> None:
25
+ """Show SimStore availability."""
26
+ console.print(_COMING_SOON)
27
+
28
+
29
+ @simstore.result_callback()
30
+ def simstore_fallback(result, **kwargs) -> None:
31
+ pass
32
+
33
+
34
+ @simstore.command("browse", hidden=False)
35
+ def simstore_browse() -> None:
36
+ """Browse available simulation assets. (Coming soon)"""
37
+ console.print(_COMING_SOON)
38
+
39
+
40
+ @simstore.command("publish", hidden=False)
41
+ def simstore_publish() -> None:
42
+ """Publish a simulation asset to SimStore. (Coming soon)"""
43
+ console.print(_COMING_SOON)
44
+
45
+
46
+ @simstore.command("purchase", hidden=False)
47
+ def simstore_purchase() -> None:
48
+ """Purchase a simulation asset. (Coming soon)"""
49
+ console.print(_COMING_SOON)