Metadata-Version: 2.1
Name: cvargs
Version: 0.1.0
Summary: Function argument conversion
Home-page: https://gitlab.com/diefans/cvargs
Author: Oliver Berger
Author-email: diefans@gmail.com
License: UNKNOWN
Description: cvargs
        ======
        
        A decorator to apply a function on certain arguments of a function.
        
        
        .. code-block:: python
        
           import cvargs
        
           @cvargs.convert(foo=float, kwargs=str)
           def func(foo, *bar, **kwargs):
               ...
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: Apache Software License
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.7,<4.0
Description-Content-Type: text/x-rst
Provides-Extra: tests
