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.
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.4
2
- Name: fun-args
3
- Version: 0.0.1
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.11
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}")
@@ -3,6 +3,8 @@
3
3
  Simple argument passing library inspired by Typer
4
4
 
5
5
  ```python
6
+ from fun_args import argumentize
7
+
6
8
  # Your main with explicitly defined parameters
7
9
  def main(name: str, age: int = 25, smart = False):
8
10
  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: fun-args
3
- Version: 0.0.1
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.11
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 = "fun-args"
3
- version = "0.0.1"
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.11"
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