Metadata-Version: 2.1
Name: boxprint
Version: 0.0.4
Summary: A small package for printing boxes
Home-page: https://github.com/yuzuquats/pybox
Author: James Kao
Author-email: james.l.kao@example.com
License: UNKNOWN
Description: # Boxprint
        
        A small package to print boxes
        
        ## Usage
        
        ```python
        from boxprint import bprint
        
        bprint("hello world")
        ```
        ```
        ╭──────────────────────────────────────────────────────────────────────────────╮
        │ Hello World                                                                  │
        ╰──────────────────────────────────────────────────────────────────────────────╯
        ```
        
        ## Configurations
        
        ```python
        from boxprint import bprint, BoxTypes
        
        """
        @param width
          Max width of the box
        @param box_type
          The type of the box (LIGHT, HEAVY, DOUBLE, ROUND)
        @param print_func
          The print function to use
        """
        bprint("hello_world", width=40, box_type=BoxTypes.HEAVY, print_func=print)
        bprint("Text\nWith\nMultiple\nLines")
        ```
        ```
        ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
        ┃ Hello World                          ┃
        ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
        
        ╭──────────────────────────────────────────────────────────────────────────────╮
        │ Text                                                                         │
        │ With                                                                         │
        │ Multiple                                                                     │
        │ Lines                                                                        │
        ╰──────────────────────────────────────────────────────────────────────────────╯
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
