fun-args 0.0.1__tar.gz → 0.0.2__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.
- {fun_args-0.0.1 → fun_args-0.0.2}/PKG-INFO +5 -3
- {fun_args-0.0.1 → fun_args-0.0.2}/README.md +2 -0
- fun_args-0.0.2/fun_args/__init__.py +1 -0
- {fun_args-0.0.1 → fun_args-0.0.2}/fun_args.egg-info/PKG-INFO +5 -3
- {fun_args-0.0.1 → fun_args-0.0.2}/pyproject.toml +3 -3
- fun_args-0.0.1/fun_args/__init__.py +0 -1
- {fun_args-0.0.1 → fun_args-0.0.2}/fun_args/main.py +0 -0
- {fun_args-0.0.1 → fun_args-0.0.2}/fun_args.egg-info/SOURCES.txt +0 -0
- {fun_args-0.0.1 → fun_args-0.0.2}/fun_args.egg-info/dependency_links.txt +0 -0
- {fun_args-0.0.1 → fun_args-0.0.2}/fun_args.egg-info/top_level.txt +0 -0
- {fun_args-0.0.1 → fun_args-0.0.2}/setup.cfg +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
|
-
Name:
|
|
3
|
-
Version: 0.0.
|
|
2
|
+
Name: fun_args
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Summary: Tiny CLI argument parser inspired by Typer
|
|
5
5
|
Author-email: Maxim Grivennyy <maximgriven@gmail.com>
|
|
6
|
-
Requires-Python: >=3.
|
|
6
|
+
Requires-Python: >=3.9
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
8
|
|
|
9
9
|
# Fun Args Package
|
|
@@ -11,6 +11,8 @@ Description-Content-Type: text/markdown
|
|
|
11
11
|
Simple argument passing library inspired by Typer
|
|
12
12
|
|
|
13
13
|
```python
|
|
14
|
+
from fun_args import argumentize
|
|
15
|
+
|
|
14
16
|
# Your main with explicitly defined parameters
|
|
15
17
|
def main(name: str, age: int = 25, smart = False):
|
|
16
18
|
print(f"Hi, {name}")
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from fun_args import argumentize
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
|
-
Name:
|
|
3
|
-
Version: 0.0.
|
|
2
|
+
Name: fun_args
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Summary: Tiny CLI argument parser inspired by Typer
|
|
5
5
|
Author-email: Maxim Grivennyy <maximgriven@gmail.com>
|
|
6
|
-
Requires-Python: >=3.
|
|
6
|
+
Requires-Python: >=3.9
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
8
|
|
|
9
9
|
# Fun Args Package
|
|
@@ -11,6 +11,8 @@ Description-Content-Type: text/markdown
|
|
|
11
11
|
Simple argument passing library inspired by Typer
|
|
12
12
|
|
|
13
13
|
```python
|
|
14
|
+
from fun_args import argumentize
|
|
15
|
+
|
|
14
16
|
# Your main with explicitly defined parameters
|
|
15
17
|
def main(name: str, age: int = 25, smart = False):
|
|
16
18
|
print(f"Hi, {name}")
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
[project]
|
|
2
|
-
name = "
|
|
3
|
-
version = "0.0.
|
|
2
|
+
name = "fun_args"
|
|
3
|
+
version = "0.0.2"
|
|
4
4
|
description = "Tiny CLI argument parser inspired by Typer"
|
|
5
5
|
authors = [
|
|
6
6
|
{ name="Maxim Grivennyy", email="maximgriven@gmail.com" }
|
|
7
7
|
]
|
|
8
8
|
dependencies = []
|
|
9
9
|
readme = "README.md"
|
|
10
|
-
requires-python = ">=3.
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
11
|
|
|
12
12
|
[build-system]
|
|
13
13
|
requires = ["setuptools>=61.0"]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
from .main import argumentize
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|