From 5cf4f3631ec8e5e70791301b8485035b4c995abd Mon Sep 17 00:00:00 2001 From: Anthony Scopatz Date: Sat, 7 Mar 2015 17:32:13 -0600 Subject: [PATCH] added ascii logo --- setup.py | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/setup.py b/setup.py index c14062a60..4edd4ee2d 100755 --- a/setup.py +++ b/setup.py @@ -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▀%Φ▀▀ ╝*" ,α█████▓▄,▄▀Γ"▀╕ + "▀██¼" ▄═╦█╟║█▀ ╓ `^` ,▄ ╢╕ + ,▀╫M█▐j╓╟▀ ╔▓▄█▀ '║ ╔ ╣║▌ ▀▄ + ▄m▀▀███╬█╝▀ █▀^ "ÜM j▐╟╫╨▒ ╙▀≡═╤═m▀╗ + █æsæ╓ ╕, ,▄Ä ▐'╕H LU ║║╠╫Å^2=⌐ █ + ▄æ%Å███╠█ª╙▄█▀ $1╙ ║║╟╫╩*T▄ ▌ + ╙╗%▄,╦██▌█▌█╢M ╕ M║║║║█═⌐ⁿ"^ ╫ + ╙╣▀████@█░█ ▌╕╕ ` ▌║▐▐║█D═≈⌐¬ⁿ s ║⌐ + ╙╬███▓║█` ▌╚ ╕ ╕▌║▐▐╣▌⌐*▒▒Dù` ▐▌ + ╙╬██╨U█ ╟ $ ▌ ▌▌▐▐▐M█▄═≤⌐% ╓⌐ ▌ + ║║█▄▌║ ╟ ▌ ▌M▐▐▐M█▀▒▒▒22, ▐▌ + ███╙^▌ ║ ▌ ⌐M▐▐▐M█≤⌐⌐¬── ▐M + ║██ ▌╙ ╓ H║ ▌╒ M║▐▐M█"^^^^^"ⁿ ║ + ██╕╙@▓ ╕ ▌║ H' ║▐▐▐█══=.,,, █ + ╙█▓╔╚╚█ ╠ ▌└╒ ▌▐ ╚║║║▀****ⁿ - ╓▌ + ╙█▌¼V╚▌ ▌ ╕ ▌ ║╒ ║ ▌▒╠█▀≤≤≤≤≤⌐ █ + ╙█▌╔█╚▌ ┘ M ▌║ ╫ UUM██J^^" ▐▌ + ╙██╙█╙▌ ╕$j ▐⌐▌ ▌║╝╟█Å%%%≈═ █ + ╙╣█╣█^▌ ╠║▐ ║ ▌▐.DU██^[""ⁿ -╒▌ + ▀█▄█`▌ ░M▀ ▌▐ Å£╝╝█╜%≈═╓""w ⁿ⌐ █ + `▀▄▀`▌ ▌█▐⌐║▐UW╖██%≤═░*─ =z ▄Γ + ╙██╙▄▌█ ▌Å╛╣██╨%╤ƒⁿ= -` ▄┘ + █▌╢▓▌▌ W £6█╤,"ⁿ ` ▄≡▀▀▀ + █"█▌▌╟Å╓█╓█▀%` ▄▀ + ╙▌██`▒U▓U█%╗* █ + ▌╫║ ▌ÅÅ║▀╛¬` `"█ + ▌╫ ╫╟ █▄ ~╦%▒╥4^ + ▌▌ "M█ `▀╕ X╕"╗▄▀^ + █▌ ╓M ╙▀e▀▀^ + ╙██▄▄▀ + ^^ +""" + if __name__ == '__main__': main() +