mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-12 18:27:47 +01:00
20 lines
388 B
Python
20 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}
|
||
|
```
|
||
|
"""
|