From 98049385f4d0caddc48c774ed4d1dbabc18ebd43 Mon Sep 17 00:00:00 2001 From: Christopher Hemingway Date: Mon, 29 Jun 2015 22:30:28 +0100 Subject: [PATCH 1/2] Add requirements.txt for pip. This simplifies installation on OSX by installing requirements with a single ```pip install -r requirements.txt``` Library minimum versions taken from http://flatcam.org/manual/installation.html#requirements Where versions have not been specified, requirements.txt reflects this. --- requirements.txt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..b9602f13 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,6 @@ +numpy>=1.8 +matplotlib>=1.3.1 +shapely>=1.3 +simplejson +rtree +scipy From 7b3647aa97327785880f4a647bdda11d74837df9 Mon Sep 17 00:00:00 2001 From: Chris Hemingway Date: Tue, 30 Jun 2015 20:40:06 +0100 Subject: [PATCH 2/2] Add comments to requirements.txt --- requirements.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/requirements.txt b/requirements.txt index b9602f13..53c65152 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,6 @@ +# This file contains python only requirements to be installed with pip +# Python pacakges that cannot be installed with pip (e.g. PyQT4) are not included. +# Usage: pip install -r requirements.txt numpy>=1.8 matplotlib>=1.3.1 shapely>=1.3