lark-cli 0.1.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.
lark_cli/__init__.py ADDED
@@ -0,0 +1,3 @@
1
+ __all__ = ["main"]
2
+
3
+ from .cli import main
lark_cli/cli.py ADDED
@@ -0,0 +1,2 @@
1
+ def main() -> None:
2
+ print("Coming soon")
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.1
2
+ Name: lark-cli
3
+ Version: 0.1.0
4
+ Summary: A tiny CLI that says Coming soon
5
+ Author: Your Name
6
+ Requires-Python: >=3.7
7
+ Description-Content-Type: text/markdown
8
+
9
+ # lark-cli
10
+
11
+ A minimal Python CLI package.
12
+
13
+ ## Usage
14
+
15
+ ```bash
16
+ lark-cli
17
+ ```
18
+
19
+ Output:
20
+
21
+ ```text
22
+ Coming soon
23
+ ```
@@ -0,0 +1,7 @@
1
+ lark_cli/__init__.py,sha256=24EhFj6UgmRcWyjJTDy7Si6sVs2YDCrpkG2ZU5o9bLQ,42
2
+ lark_cli/cli.py,sha256=i1jVO6uEcccaAQNp-UplKcLDywo-25gl05Jpy6Jv1jc,45
3
+ lark_cli-0.1.0.dist-info/METADATA,sha256=85-twfqpPjbJncW7BXB0J2DmNcakQkfbsgv1V4shMtQ,284
4
+ lark_cli-0.1.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
5
+ lark_cli-0.1.0.dist-info/entry_points.txt,sha256=10nnEbjkSHBf6I0-x7FZgt7f6xXcrldigPvQoQEEhoU,47
6
+ lark_cli-0.1.0.dist-info/top_level.txt,sha256=rGge9qvF9MEEekdY7zzMKFltojAek_7_QWI3pkaBBNs,9
7
+ lark_cli-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.42.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ lark-cli = lark_cli.cli:main
@@ -0,0 +1 @@
1
+ lark_cli