From be79b63627d1969fb2aa2eed6a600599d5436629 Mon Sep 17 00:00:00 2001 From: Gary <35942108+LameLemon@users.noreply.github.com> Date: Sat, 30 Oct 2021 21:27:38 +0200 Subject: [PATCH] Additional files (requirements and gitignore (#6) * created gitignore and requirements files * update install in readme --- .gitignore | 2 ++ README.md | 2 +- requirements.txt | 4 ++++ 3 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7fa2790 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +__pycache__/ +*.pem \ No newline at end of file diff --git a/README.md b/README.md index 07c168e..65e82b6 100755 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ This tool can run on Linux, Windows and MAC. ## Install -1. pip install flask-bootstrap pyscreenshot pyopenssl pillow +1. pip install -r requirements.txt 2. In a directory, run "**git clone https://github.com/qijungu/screenshare.git**". You will have a new directory "screenshare" with code inside. diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..18f4169 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +flask-bootstrap +pyscreenshot +pyopenssl +pillow \ No newline at end of file