Metadata-Version: 2.1
Name: header-printer
Version: 0.0.7
Summary: Python package for printing a nicely formatted header.
Home-page: https://github.com/Michael-Wisniewski/header-printer
Author: Michał Wiśniewski
License: UNKNOWN
Project-URL: Documentation, https://github.com/Michael-Wisniewski/header-printer
Description: ## header-printer
        Python package for printing a nicely formatted header.
        ### Installation
        Run the following command to install:
        ```shell
        pip install header-printer
        ```
        ### Usage
        In you script import and use function  `print_header`.
        ```python
        from header_printer import print_header
        
        print_header('Some text') 
        ```
        Header will be stretched to the full length of the terminal.
        The provided text will be centered.
        ```shell
        
        ********************************************
                         Some text                  
        ********************************************
        
        ```
        ### Development
        To install all dependencies required for local development, run:
        ```shell
        make install-dev
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
