mpal-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.
- mpal_cli-0.0.1/PKG-INFO +9 -0
- mpal_cli-0.0.1/pyproject.toml +20 -0
- mpal_cli-0.0.1/setup.cfg +4 -0
- mpal_cli-0.0.1/src/mpal/__init__.py +0 -0
- mpal_cli-0.0.1/src/mpal/__main__.py +16 -0
- mpal_cli-0.0.1/src/mpal_cli.egg-info/PKG-INFO +9 -0
- mpal_cli-0.0.1/src/mpal_cli.egg-info/SOURCES.txt +8 -0
- mpal_cli-0.0.1/src/mpal_cli.egg-info/dependency_links.txt +1 -0
- mpal_cli-0.0.1/src/mpal_cli.egg-info/entry_points.txt +2 -0
- mpal_cli-0.0.1/src/mpal_cli.egg-info/top_level.txt +1 -0
mpal_cli-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mpal-cli
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved name for a future CLI tool release.
|
|
5
|
+
Author-email: Nasser <nasserx.me@gmail.com>
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Requires-Python: >=3.7
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "mpal-cli"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name="Nasser", email="nasserx.me@gmail.com" },
|
|
10
|
+
]
|
|
11
|
+
description = "Reserved name for a future CLI tool release."
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.7"
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"Development Status :: 1 - Planning",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[project.scripts]
|
|
20
|
+
mpal-cli = "mpal.__main__:main"
|
mpal_cli-0.0.1/setup.cfg
ADDED
|
File without changes
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import sys
|
|
2
|
+
|
|
3
|
+
def main():
|
|
4
|
+
args = sys.argv[1:]
|
|
5
|
+
|
|
6
|
+
print("\n[mpal-cli] Coming soon! / قريباً جداً\n")
|
|
7
|
+
print("This package name has been reserved for a future release.")
|
|
8
|
+
|
|
9
|
+
if '--help' in args or '-h' in args:
|
|
10
|
+
print("Help available upon official release. Stay tuned!")
|
|
11
|
+
|
|
12
|
+
print()
|
|
13
|
+
sys.exit(0)
|
|
14
|
+
|
|
15
|
+
if __name__ == "__main__":
|
|
16
|
+
main()
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mpal-cli
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved name for a future CLI tool release.
|
|
5
|
+
Author-email: Nasser <nasserx.me@gmail.com>
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Requires-Python: >=3.7
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
mpal
|