forked from gidden/salamanca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·17 lines (13 loc) · 918 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup
# Thanks to http://patorjk.com/software/taag/
logo = r"""
_______. ___ __ ___ .___ ___. ___ .__ __. ______ ___
/ | / \ | | / \ | \/ | / \ | \ | | / | / \
| (----` / ^ \ | | / ^ \ | \ / | / ^ \ | \| | | ,----' / ^ \
\ \ / /_\ \ | | / /_\ \ | |\/| | / /_\ \ | . ` | | | / /_\ \
.----) | / _____ \ | `----./ _____ \ | | | | / _____ \ | |\ | | `----./ _____ \
|_______/ /__/ \__\ |_______/__/ \__\ |__| |__| /__/ \__\ |__| \__| \______/__/ \__\
"""
if __name__ == "__main__":
print(logo)
setup(use_scm_version=True)