-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (30 loc) · 1.47 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import os
import platform
os.system("pip install colorama")
from colorama import Fore,init
def cls():
if platform.system() == "Windows":
os.system("cls")
else:
os.system("clear")
cls()
ascii_art = """
/$$ /$$ /$$
| $$ | $$ | $$
/$$$$$$$ /$$$$$$ /$$ /$$ /$$ /$$$$$$$ | $$ /$$$$$$ /$$$$$$ /$$$$$$$ /$$$$$$ /$$$$$$
/$$__ $$ /$$__ $$| $$ | $$ | $$| $$__ $$| $$ /$$__ $$ |____ $$ /$$__ $$ /$$__ $$ /$$__ $$
| $$ | $$| $$ \ $$| $$ | $$ | $$| $$ \ $$| $$| $$ \ $$ /$$$$$$$| $$ | $$| $$$$$$$$| $$ \__/
| $$ | $$| $$ | $$| $$ | $$ | $$| $$ | $$| $$| $$ | $$ /$$__ $$| $$ | $$| $$_____/| $$
| $$$$$$$| $$$$$$/| $$$$$/$$$$/| $$ | $$| $$| $$$$$$/| $$$$$$$| $$$$$$$| $$$$$$$| $$
\_______/ \______/ \_____/\___/ |__/ |__/|__/ \______/ \_______/ \_______/ \_______/|__/
"""
color_range = [Fore.BLUE, Fore.LIGHTBLUE_EX, Fore.WHITE, Fore.LIGHTBLACK_EX]
gradient_art = ""
for line in ascii_art.splitlines():
for i, char in enumerate(line):
color = color_range[i % len(color_range)]
gradient_art += f"{color}{char}"
gradient_art += "\n"
print(gradient_art)
os.system("pip install -r requirements.txt")
exit=input("Press any key to exit")