diff --git a/install.sh b/install.sh deleted file mode 100644 index a8b19a5..0000000 --- a/install.sh +++ /dev/null @@ -1,12 +0,0 @@ -python3 -m venv .venv # Create .venv - -.venv/bin/pip3 install --upgrade pip # Upgrade pip - -.venv/bin/pip3 install bottle # Micro Framework -.venv/bin/pip3 install gunicorn # WSGI Server Backend -.venv/bin/pip3 install beaker # Session & caching library -.venv/bin/pip3 install mako # Template library - -.venv/bin/pip3 install mysql-connector # Database connector -.venv/bin/pip3 install bcrypt # Password hash -.venv/bin/pip3 install pyjwt[crypto] # JWT diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..19df4fa --- /dev/null +++ b/requirements.txt @@ -0,0 +1,8 @@ +bottle +gunicorn +beaker +mako + +mysql-connector +bcrypt +pyjwt[crypto]