-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (27 loc) · 1.06 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
import shlex
import sys
from subprocess import call
import zipfile
STOCKFISH_DOWNLOAD = {
"win32": "https://stockfishchess.org/files/stockfish-11-win.zip",
"linux": "https://stockfishchess.org/files/stockfish-11-linux.zip",
"linux32": "https://stockfishchess.org/files/stockfish-11-linux.zip",
"darwin": "https://stockfishchess.org/files/stockfish-11-mac.zip"
}
def unzip(filepath, resultpath):
with zipfile.ZipFile(filepath, 'r') as zip_ref:
zip_ref.extractall(resultpath)
def install(module):
call(shlex.split(f"{sys.executable} -m pip install {module}"))
def main(needfish, needpychess):
if needfish:
link = STOCKFISH_DOWNLOAD[sys.platform]
call(shlex.split(f"curl -o stockfish.zip {link}"))
unzip("stockfish.zip", "stockfish/")
print("Stockfish is in stockfish")
if needpychess:
install("python-chess")
if __name__ == "__main__":
needfish = 'y' in input("Install stockfish(y/n)? ").lower()
needpychess = 'y' in input("Install python-chess(y/n)? ").lower()
main(needfish, needpychess)