This repository was archived by the owner on Jan 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (40 loc) · 1.34 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Copyright 2020-20xx; Benjamin O'Brien (iiPython)
# setup.py
# Modules
import subprocess
from os import mkdir
from json import dumps
from shutil import which
from os.path import exists
# Initialization
print("Checking if this release is ready to go...")
if not exists("db"):
mkdir("db")
print("\tcreated database folder")
# Setup folders
if not exists("db/users"):
open("db/users", "w+").write(dumps({}))
print("\tcreated users database")
if not exists("db/guilds"):
open("db/guilds", "w+").write(dumps({}))
print("\tcreated guilds database")
# Setup .env file
if not exists(".env"):
print()
token = input("Bot token: ")
dbltoken = input("DBL token (leave empty if none): ")
wolfram = input("Wolframalpha key: ")
if not dbltoken:
open("assets/cogs/top.py", "w").write("def setup(bot):\n pass")
open(".env", "w+").write(f"BOT_TOKEN = \"{token}\"\nDBL_TOKEN = \"{dbltoken}\"\n\nWOLFRAMALPHA_KEY = \"{wolfram}\"")
# Install dependencies
x = input("Would you like to install dependencies (Y/n)? ")
if x.lower() in ["y", "n", "yes", "no"]:
if x.lower() in ["yes", "y"]:
python = "python"
if which("python3"):
python += "3"
subprocess.run([python, "-m", "pip", "install", "-U", "-r", "requirements.txt"])
# Finish up
print()
print("Prism should be ready to launch.")