From d5f4789bb0b55e8cd885f50e621c5c682b1e4085 Mon Sep 17 00:00:00 2001 From: MMDRZA <95309780+Pymmdrza@users.noreply.github.com> Date: Tue, 26 Sep 2023 04:45:39 +0300 Subject: [PATCH] Update install.py --- install.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/install.py b/install.py index 36b8e68..52b7677 100644 --- a/install.py +++ b/install.py @@ -3,6 +3,7 @@ import subprocess import platform + def subInstall(package_name: str): if "win" in platform.platform().lower(): subprocess.check_call([sys.executable, "-m", "pip", "install", package_name]) @@ -17,12 +18,18 @@ def subInstall(package_name: str): def install_deps(): deps = ["ecdsa", "setuptools", "wheel", "hdwallet"] for dep in deps: - print(f" {green}Installing{reset}:{yellow} {dep}{reset}") + print(f" Installing: {dep} ----------------------------------") subInstall(dep) +def install_cryptofuzz(): + url = "git+https://github.com/your_username/cryptofuzz.git" + subprocess.check_call([sys.executable, "-m", "pip", "install", url]) + + def main(): install_deps() - print(f"{red}CryptoFuzz{reset} {green}With dependencies have been installed!{reset}") + install_cryptofuzz() + print("cryptofuzz and its dependencies have been installed!") if __name__ == "__main__":