diff --git a/README.md b/README.md index 87f2518..87caf22 100644 --- a/README.md +++ b/README.md @@ -62,10 +62,10 @@ Setting up the server # # OR: # apt-get install python3 python3-pip - 2. Install Flask, and APScheduler: + 2. Install required Python packages: # # You might have to use pip3 if your system defaults to Python 2 - # pip install APScheduler flask + # pip install -r requirements.txt 3. If using in production, install uwsgi and it's python plugin: diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..ec351c6 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +APScheduler>=3 +Flask>=0.10 +