From 46a1476ab078cc811612788ab019b6e965a6a800 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Tue, 25 Sep 2018 11:02:50 +0300 Subject: [PATCH] Add requirements.txt Generated with `pip freeze`. This is so I can pin the versions of packages that I've tested with as well as to allow Travis to test whether the project runs on various Pythons and to let GitHub in- form me of vulnerabilities in some libraries. --- README.md | 2 +- requirements.txt | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 requirements.txt diff --git a/README.md b/README.md index 948c987..b057031 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Create a virtual environment and run it: $ virtualenv -p /usr/bin/python3.6 venv $ . venv/bin/activate - $ pip install falcon gunicorn SolrClient psycopg2-binary + $ pip install -r requirements.txt $ gunicorn app:api ## Todo diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..2e6429b --- /dev/null +++ b/requirements.txt @@ -0,0 +1,12 @@ +certifi==2018.8.24 +chardet==3.0.4 +falcon==1.4.1 +gunicorn==19.9.0 +idna==2.7 +kazoo==2.2.1 +psycopg2-binary==2.7.5 +python-mimeparse==1.6.0 +requests==2.19.1 +six==1.11.0 +SolrClient==0.2.1 +urllib3==1.23