diff options
author | MichaĆ Zimniewicz <michzimny@users.noreply.github.com> | 2017-02-26 15:20:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-26 15:20:07 +0100 |
commit | 973d1cd652c8840a8e7c408182cfa79fb7183455 (patch) | |
tree | 82e383b7fd7db26284806137d2491d3f55ed713c | |
parent | 29b99d5e50af876141187c7bdf52d663f3ac0807 (diff) | |
parent | 73903fbae90953572241f96b0c25a89a5142abf2 (diff) |
Merge pull request #8 from michzimny/requirements
Updated requirements and README
-rw-r--r-- | README.md | 10 | ||||
-rw-r--r-- | requirements-linux.txt | 3 | ||||
-rw-r--r-- | requirements-windows.txt | 2 | ||||
-rw-r--r-- | requirements.txt | 2 |
4 files changed, 12 insertions, 5 deletions
@@ -5,18 +5,22 @@ 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 +* 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. +For Linux, you can leave the default `engine` property, for Windows, you have to change it to `mysql.connector.django` to use Oracle connector. + # Usage ``` diff --git a/requirements-linux.txt b/requirements-linux.txt new file mode 100644 index 0000000..7be7072 --- /dev/null +++ b/requirements-linux.txt @@ -0,0 +1,3 @@ +django==1.10 +mysqlclient==1.3 +readline==6 diff --git a/requirements-windows.txt b/requirements-windows.txt new file mode 100644 index 0000000..dc45013 --- /dev/null +++ b/requirements-windows.txt @@ -0,0 +1,2 @@ +django==1.10 +pyreadline==2 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
|