summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2016-11-25 17:38:18 +0100
committeremkael <emkael@tlen.pl>2016-11-25 17:38:18 +0100
commita4553708999b31d3fd4ec73f1fae31ffd712b91a (patch)
treea228c0c975ab500deab0cf8011d79bc002c2571f
parent0a27bbf9ce1f5b1a52bc62ff4d9e5c2f960b030c (diff)
Requirements files split per platform
-rw-r--r--README.md9
-rw-r--r--requirements-linux.txt3
-rw-r--r--requirements-windows.txt2
-rw-r--r--requirements.txt2
4 files changed, 11 insertions, 5 deletions
diff --git a/README.md b/README.md
index 7113301..7f33a4b 100644
--- a/README.md
+++ b/README.md
@@ -5,14 +5,17 @@ Command-line interface for line-up management in JFR Teamy.
Prerequisites:
-* Python 3
+* Python 3 (on Windows <= 3.4 due to the availability of MySQL connector)
* pip
-* the prerequisites of mysqlclient-python - https://github.com/PyMySQL/mysqlclient-python
+* Linux environment: the prerequisites of mysqlclient-python - https://github.com/PyMySQL/mysqlclient-python
+* Windows environment: MySQL connector from Oracle, unavailable via PIP - https://dev.mysql.com/downloads/connector/python/
```
-pip install -r requirements.txt
+pip install -r requirements-PLATFORM.txt
```
+Where `PLATFORM` is either `windows` or `linux`.
+
# Configuration
Set MySQL settings in ql/settings.py.
diff --git a/requirements-linux.txt b/requirements-linux.txt
new file mode 100644
index 0000000..02377be
--- /dev/null
+++ b/requirements-linux.txt
@@ -0,0 +1,3 @@
+django
+mysqlclient
+readline
diff --git a/requirements-windows.txt b/requirements-windows.txt
new file mode 100644
index 0000000..48b847f
--- /dev/null
+++ b/requirements-windows.txt
@@ -0,0 +1,2 @@
+django
+pyreadline
diff --git a/requirements.txt b/requirements.txt
deleted file mode 100644
index b2ef732..0000000
--- a/requirements.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-django==1.10
-mysqlclient==1.3.9