Metadata-Version: 2.1
Name: header-printer
Version: 0.0.2
Summary: Python package for printing a nicely formatted header.
Home-page: UNKNOWN
Author: Michał Wiśniewski
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown

## 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                  
********************************************

```
Extended documentation can be found [here](https://aroundpython.com/2021/06/13/tool-for-writing-algorithms/)
### Development
To install all dependencies required for local development, run:
```shell
make install-dev
```


