Skip to content

Commit 3792ee3

Browse files
committedJan 24, 2016
Use requirements file
This is a standard way of indicating requirements for Python projects, since it makes it easy to automatically install all needed packages with the correct versions.
1 parent ccd85da commit 3792ee3

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed
 

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ Setting up the server
6262
# # OR:
6363
# apt-get install python3 python3-pip
6464

65-
2. Install Flask, and APScheduler:
65+
2. Install required Python packages:
6666

6767
# # You might have to use pip3 if your system defaults to Python 2
68-
# pip install APScheduler flask
68+
# pip install -r requirements.txt
6969

7070
3. If using in production, install uwsgi and it's python plugin:
7171

‎requirements.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
APScheduler>=3
2+
Flask>=0.10
3+

0 commit comments

Comments
 (0)
Please sign in to comment.