added ascii logo

This commit is contained in:
Anthony Scopatz 2015-03-07 17:32:13 -06:00
parent 8d8cac4e42
commit 5cf4f3631e

View file

@ -29,6 +29,7 @@ def build_tables():
sys.path.pop(0)
def main():
print(logo)
clean_tables()
build_tables()
with open('readme.rst', 'r') as f:
@ -50,5 +51,46 @@ def main():
)
setup(**skw)
logo = """
4Φ
²^
- " ╒▄█████▀█
W
m%Φ *" ,α█████▓▄,▄▀Γ"
"▀██¼" `^` ,
,Mj '║ ╔ ╣║▌ ▀▄
m ^ "ÜM j▐╟╫╨▒ ╙▀≡═╤═m▀╗
æsæ , ,Ä '╕H LU ║║╠╫Å^2=⌐ █
æ%Ū $1 *T
%,M M"^ ╫
@ ` D¬ s
` *`
U $ M%
MM22,
^ MM¬ M
H MM"^^^^^"
@ H' ║▐▐▐█══=.,,, █
**** -
¼V
M UUMJ^^" ▐▌
$j Å%%%
^ .DU^["" -
` M ţ%""w
`` UW%* =z Γ
Å%ƒⁿ= -`
W £6,"ⁿ ` ▄≡▀▀▀
"█▌▌╟Å╓█╓█▀%` ▄▀
`UU%*
ÅŬ` `"
~%4^
"M█ `▀╕ X╕"^
M e^
^^
"""
if __name__ == '__main__':
main()