Metadata-Version: 2.1
Name: bvr
Version: 0.0.4
Summary: BVR: Log like a Beaver
Home-page: https://github.com/doedotdev/bvr
Author: doedotdev
Author-email: doedotdev@gmail.com
License: UNKNOWN
Description: # bvr
        BVR: Log like a Beaver
        
        [![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/)
        [![PyPI version](https://badge.fury.io/py/bvr.svg)](https://badge.fury.io/py/bvr)
        ![GitHub](https://img.shields.io/github/license/doedotdev/bvr)
        
        
        
        
        ## Install
        ```
        pip install bvr
        ```
        
        ### @bvr_start | log when a method starts
        
        Example:
        ```
        from bvr import bvr_start
        
        @bvr_start
        def example_one():
            print("hello")
            return 3
        
        example_one()
        ```
        
        Output:
        ```
        STARTED | FUNCTION: example_one | ARGS: () | KWARGS: {}
        
        hello
        ```
        
        
        
        # TODO:
        - Docs Badge passing
        - test passing
        - build passing
        - requirements up to date and passing
        - package info pypi
        - test pypi
        - supported python versions
        - cocverage info
        - travis ci info
        - pylint score 10/10
        - apply to the class level
        - Smoke test that pip installs the latest version
        - smoke test then runs tests against that version to make sure no issues
        - todo: emd of deploy script deletes dist and egg files to clean itself up
        - todo: rem,ove initial arg which is not really needed
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
