mojito-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.
mojito/__init__.py ADDED
@@ -0,0 +1 @@
1
+ __version__ = "0.1.0"
mojito/__main__.py ADDED
@@ -0,0 +1,8 @@
1
+ import sys
2
+
3
+ def main():
4
+ """Prints a wine emoji to the terminal."""
5
+ print("🍷 Some thing interesting coming soon.")
6
+
7
+ if __name__ == "__main__":
8
+ main()
@@ -0,0 +1,45 @@
1
+ Metadata-Version: 2.4
2
+ Name: mojito-cli
3
+ Version: 0.1.0
4
+ Summary: A CLI that prints a wine emoji
5
+ Author-email: Ligeng <ligeng@example.com>
6
+ Project-URL: Homepage, https://github.com/ligeng/mojito
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.7
11
+ Description-Content-Type: text/markdown
12
+
13
+ # Mojito
14
+
15
+ A simple CLI tool that prints a wine emoji 🍷.
16
+
17
+ ## Installation
18
+
19
+ You can install `mojito` from PyPI:
20
+
21
+ ```bash
22
+ pip install mojito-cli
23
+ ```
24
+
25
+ ## Usage
26
+
27
+ Once installed, simply run:
28
+
29
+ ```bash
30
+ mojito
31
+ ```
32
+
33
+ And it will print:
34
+
35
+ ```
36
+ 🍷
37
+ ```
38
+
39
+ ## Development
40
+
41
+ To install locally for development:
42
+
43
+ ```bash
44
+ pip install -e .
45
+ ```
@@ -0,0 +1,7 @@
1
+ mojito/__init__.py,sha256=kUR5RAFc7HCeiqdlX36dZOHkUI5wI6V_43RpEcD8b-0,22
2
+ mojito/__main__.py,sha256=U05Yy_RFzB8FOUc4T3jz6k_-v5gKNs0-XTepwAfm5sI,164
3
+ mojito_cli-0.1.0.dist-info/METADATA,sha256=Ictnwv6abcasHdIfZ0JNdTU7O6NrG4xgYR8NZAlA7kE,727
4
+ mojito_cli-0.1.0.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
5
+ mojito_cli-0.1.0.dist-info/entry_points.txt,sha256=D5PJVUOSy51mViQUNx9pIVym1m4SvwMyFke96kF_Y-8,48
6
+ mojito_cli-0.1.0.dist-info/top_level.txt,sha256=WVN1bWTopUEbQz9XFaYIXDOGSYihyUwM-7AapQ0a9XE,7
7
+ mojito_cli-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ mojito = mojito.__main__:main
@@ -0,0 +1 @@
1
+ mojito