Skip to content

Commit

Permalink
additional changes done
Browse files Browse the repository at this point in the history
  • Loading branch information
Palani-SN committed Jun 2, 2024
1 parent d23ed5e commit b5047ab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@ class vscaled_args(arg_parser):
the function returns a dict containing all the arguments and its values.
cmds :
1. python <__file__> 10 10.0 Seven [10,10.0,'Seven'] {'int':10,'float':10.0,'str':'Seven'} True
2. python <__file__> -inp_int=10 -inp_float=10.0 -inp_str=Seven -inp_list=[10,10.0,'Seven'] -inp_dict={'int':10,'float':10.0,'str':'Seven'} -inp_bool=True
1. python <__file__> ~<__func__> 10 10.0 Seven [10,10.0,'Seven'] {'int':10,'float':10.0,'str':'Seven'} True
2. python <__file__> ~<__func__> -inp_int=10 -inp_float=10.0 -inp_str=Seven -inp_list=[10,10.0,'Seven'] -inp_dict={'int':10,'float':10.0,'str':'Seven'} -inp_bool=True
"""
return {
'inp_int': inp_int,
Expand All @@ -253,8 +253,8 @@ class vscaled_args(arg_parser):
the function returns a dict containing all the arguments and its values.
cmds :
1. python <__file__> 10 10.0 Seven [10,10.0,'Seven'] {'int':10,'float':10.0,'str':'Seven'} True
2. python <__file__> -inp_int=10 -inp_float=10.0 -inp_str=Seven -inp_list=[10,10.0,'Seven'] -inp_dict={'int':10,'float':10.0,'str':'Seven'} -inp_bool=True
1. python <__file__> ~<__func__> 10 10.0 Seven [10,10.0,'Seven'] {'int':10,'float':10.0,'str':'Seven'} True
2. python <__file__> ~<__func__> -inp_int=10 -inp_float=10.0 -inp_str=Seven -inp_list=[10,10.0,'Seven'] -inp_dict={'int':10,'float':10.0,'str':'Seven'} -inp_bool=True
"""
return {
'inp_int': inp_int,
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

setup(
name="py4cli",
version="0.0.4",
version="0.0.5",
description="python for command line interface development",
py_modules=["py4cli/minimal"],
py_modules=["py4cli/minimal", "py4cli/moderate"],
package_dir={"": "SRCS"},
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit b5047ab

Please sign in to comment.