diff options
| author | Shyam Sunder <sgsunder1@gmail.com> | 2018-07-21 15:58:52 -0400 |
|---|---|---|
| committer | rr- <rr-@sakuya.pl> | 2018-07-22 14:02:30 +0200 |
| commit | 9730aa5c050352736327a992f9a428b6bc82cd75 (patch) | |
| tree | a6e3dcb5774b9e0f89cad011260205da13d1997c /server/requirements.txt | |
| parent | 1fe22a4d0aa6f7e374394afc7777361e48f21823 (diff) | |
client: clean up required Python packages
* Packages that are only used in testing or development
have been moved to `dev-requirements.txt`
* Closes #178
* Minor rewrite to drop the `scikit-image` package, which
saves around 200MB in install size
Diffstat (limited to 'server/requirements.txt')
| -rw-r--r-- | server/requirements.txt | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/server/requirements.txt b/server/requirements.txt index b11c3b5..a1ef52e 100644 --- a/server/requirements.txt +++ b/server/requirements.txt @@ -1,16 +1,12 @@ alembic>=0.8.5 pyyaml>=3.11 -psycopg2>=2.6.1 +psycopg2-binary>=2.6.1 SQLAlchemy>=1.0.12 -pytest>=2.9.1 -pytest-cov>=2.2.1 -freezegun>=0.3.6 coloredlogs==5.0 -pycodestyle>=2.0.0 -scipy>=0.18.1 elasticsearch>=5.0.0 elasticsearch-dsl>=5.0.0 -scikit-image>=0.12 +numpy>=1.8.2 +pillow>=4.3.0 pynacl>=1.2.1 pytz>=2018.3 -pyRFC3339>=1.0
\ No newline at end of file +pyRFC3339>=1.0 |