Metadata-Version: 2.1
Name: boxie
Version: 1.1.0
Summary: UNKNOWN
Home-page: https://github.com/UltiRequiem/boxie
Author: Eliaz Bobadilla
Author-email: eliaz.bobadilladev@gmail.com
License: MIT
Description: # boxie
        
        A command line utility to put text in a box.
        
        ## Installation
        
        ```bash
        pip install boxie
        ```
        
        If you are on Linux you may need to use sudo to access this globally.
        
        ## Usage
        
        ```bash
        boxie "Hello World"
        ```
        
        Or...
        
        ```bash
        python -m boxie "Hello World"
        ```
        
        Or in your code:
        
        ```python
        from boxie import box_borders
        @box_borders
        def print_console(txt):
            print(txt)
        print_console("Hello World")
        ```
        
        Check [test.py](./test.py)
        
        ### Screenshot
        
        ![Screenshot](./assets/screenshot.png)
        
        ### LICENSE
        
        [MIT](./LICENSE)
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
