mojito-cli 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.
@@ -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,33 @@
1
+ # Mojito
2
+
3
+ A simple CLI tool that prints a wine emoji 🍷.
4
+
5
+ ## Installation
6
+
7
+ You can install `mojito` from PyPI:
8
+
9
+ ```bash
10
+ pip install mojito-cli
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ Once installed, simply run:
16
+
17
+ ```bash
18
+ mojito
19
+ ```
20
+
21
+ And it will print:
22
+
23
+ ```
24
+ 🍷
25
+ ```
26
+
27
+ ## Development
28
+
29
+ To install locally for development:
30
+
31
+ ```bash
32
+ pip install -e .
33
+ ```
@@ -0,0 +1 @@
1
+ __version__ = "0.1.0"
@@ -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,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ mojito/__init__.py
4
+ mojito/__main__.py
5
+ mojito_cli.egg-info/PKG-INFO
6
+ mojito_cli.egg-info/SOURCES.txt
7
+ mojito_cli.egg-info/dependency_links.txt
8
+ mojito_cli.egg-info/entry_points.txt
9
+ mojito_cli.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ mojito = mojito.__main__:main
@@ -0,0 +1 @@
1
+ mojito
@@ -0,0 +1,24 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "mojito-cli"
7
+ version = "0.1.0"
8
+ description = "A CLI that prints a wine emoji"
9
+ readme = "README.md"
10
+ authors = [
11
+ { name="Ligeng", email="ligeng@example.com" },
12
+ ]
13
+ classifiers = [
14
+ "Programming Language :: Python :: 3",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Operating System :: OS Independent",
17
+ ]
18
+ requires-python = ">=3.7"
19
+
20
+ [project.scripts]
21
+ mojito = "mojito.__main__:main"
22
+
23
+ [project.urls]
24
+ "Homepage" = "https://github.com/ligeng/mojito"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+