-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathrequirements.txt
56 lines (46 loc) · 1.41 KB
/
requirements.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# YAML parser and emitter for Python
# License: MIT
# Upstream url: http://pyyaml.org/wiki/PyYAML
PyYAML==5.4
# Boto3 is the Amazon Web Services (AWS) Software Development Kit (SDK)
# for Python.
# License: Apache2
# Use: For KMS
boto3==1.9.14
# Flask
# License: BSD
# Upstream url: http://github.com/mitsuhiko/flask/
# Use: For API.
Flask==1.0.2
# Python client for Docker.
# License: Apache2
# Upstream url: https://github.com/docker/docker-py/
docker-py==1.10.6
# The modular source code checker: pep8, pyflakes and co
# License: MIT
# Upstream url: http://bitbucket.org/tarek/flake8
flake8==3.5.0
# Measures code coverage and emits coverage reports
# Licence: BSD
# Upstream url: https://pypi.python.org/pypi/coverage
coverage==4.5.1
# tool to check your Python code against some of the style conventions
# License: Expat License
# Upstream url: https://github.com/jcrocholl/pep8.git
pep8==1.7.1
# nose makes testing easier
# License: GNU Library or Lesser General Public License (LGPL)
# Upstream url: http://readthedocs.org/docs/nose
nose==1.3.7
# http requests made easy
# License: Apache2
# Upstream url: https://github.com/kennethreitz/requests
requests==2.22.0
# makes in memory caching easy
# License: MIT
# Upstream url: https://github.com/tkem/cachetools
cachetools==3.1.1
# Json Formatter for the standard python logger
# Licence: BSD
# Upstream url: https://github.com/madzak/python-json-logger
python-json-logger==0.1.11