Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ShadowNinja committed Jan 24, 2016
1 parent ccd85da commit 3792ee3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -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:

Expand Down
3 changes: 3 additions & 0 deletions requirements.txt
@@ -0,0 +1,3 @@
APScheduler>=3
Flask>=0.10

0 comments on commit 3792ee3

Please sign in to comment.