mudita-cli 0.0.1__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.
- mudita_cli-0.0.1/PKG-INFO +15 -0
- mudita_cli-0.0.1/README.md +5 -0
- mudita_cli-0.0.1/pyproject.toml +17 -0
- mudita_cli-0.0.1/setup.cfg +4 -0
- mudita_cli-0.0.1/src/mudita_cli/__init__.py +1 -0
- mudita_cli-0.0.1/src/mudita_cli/cli.py +2 -0
- mudita_cli-0.0.1/src/mudita_cli.egg-info/PKG-INFO +15 -0
- mudita_cli-0.0.1/src/mudita_cli.egg-info/SOURCES.txt +8 -0
- mudita_cli-0.0.1/src/mudita_cli.egg-info/dependency_links.txt +1 -0
- mudita_cli-0.0.1/src/mudita_cli.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mudita-cli
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved package name for future project.
|
|
5
|
+
Author: Catur Wahyu
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/cwahyu/mudita-cli
|
|
8
|
+
Requires-Python: >=3.9
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# mudita-cli
|
|
12
|
+
|
|
13
|
+
This package name is reserved for a future project.
|
|
14
|
+
|
|
15
|
+
More details will be added soon.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "mudita-cli"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Reserved package name for future project."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
authors = [
|
|
12
|
+
{ name = "Catur Wahyu" }
|
|
13
|
+
]
|
|
14
|
+
license = {text = "MIT"}
|
|
15
|
+
|
|
16
|
+
[project.urls]
|
|
17
|
+
Homepage = "https://github.com/cwahyu/mudita-cli"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '0.0.1'
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mudita-cli
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved package name for future project.
|
|
5
|
+
Author: Catur Wahyu
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/cwahyu/mudita-cli
|
|
8
|
+
Requires-Python: >=3.9
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# mudita-cli
|
|
12
|
+
|
|
13
|
+
This package name is reserved for a future project.
|
|
14
|
+
|
|
15
|
+
More details will be added soon.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
mudita_cli
|