mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 01:17:42 +01:00
19 lines
388 B
Python
19 lines
388 B
Python
from ._version import __version__
|
|
|
|
ASCII_ART = rf"""
|
|
_ _
|
|
(_) ___ ___ _ __| |_
|
|
| |/ _/ / _ \/ '__ _/
|
|
| |\__ \/\_\/| | | |_
|
|
|_|\___/\___/\_/ \_/
|
|
|
|
isort your imports, so you don't have to.
|
|
|
|
VERSION {__version__}
|
|
"""
|
|
|
|
__doc__ = f"""
|
|
```python
|
|
{ASCII_ART}
|
|
```
|
|
"""
|