forked from amundsen-io/amundsenfrontendlibrary
-
Notifications
You must be signed in to change notification settings - Fork 1
/
requirements.txt
83 lines (66 loc) · 2.26 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# The modular source code checker: pep8, pyflakes and co
# License: MIT
# Upstream url: http://bitbucket.org/tarek/flake8
flake8==3.5.0
# A flake8 plugin that helps you write tidier imports.
# License: ISCL
# Upstream url: https://pypi.python.org/pypi/flake8-tidy-imports
flake8-tidy-imports==1.1.0
# A mature full-featured Python testing tool.
# License: MIT
# Upstream url: http://pytest.org/
pytest==3.5.1
# Pytest plugin for measuring coverage.
# License: MIT
# Upstream url: https://github.com/pytest-dev/pytest-cov
pytest-cov==2.5.1
# Rolling backport of unittest.mock for all Pythons
# License: BSD
# Upstream url: https://mock.readthedocs.io/en/latest/
mock==2.0.0
# Thin-wrapper around the mock package for easier use with py.test.
# License: MIT
# Upstream url: https://pypi.python.org/pypi/pytest-mock
pytest-mock==1.1
# Mypy is an optional static type checker for Python.
# License: MIT
# Upstream url: https://github.com/python/mypy
mypy==0.660
# PEP 484
# License: PSF
# Upstream url: https://github.com/python/typing
typing==3.6.4
# A lightweight WSGI web application framework
# License: BSD
# Upstream url: https://github.com/pallets/flask
flask==1.0.2
# The wheel project provides a bdist_wheel command for setuptools >= 0.8.0
# License: MIT
# Upstream url: https://github.com/pypa/wheel
wheel==0.33.1
# HTTP for Humans
# License: Apache
# Upstream url: http://docs.python-requests.org/en/master/
requests==2.20.0
# A lightweight library for converting complex datatypes to and from native Python datatypes.
# License: MIT
# Upstream url: https://github.com/marshmallow-code/marshmallow
marshmallow==2.15.3
# Allows declaring marshmallow schema through type annotations
# License: MIT
# Upstream url: https://github.com/justanr/marshmallow-annotations
marshmallow-annotations==2.4.0
# A utility library for mocking out the requests Python library.
# License: Apache 2.0
# Upstream url: https://pypi.org/project/responses/
responses==0.9.0
# A common package that holds the models deifnition and schemas that are used
# accross different amundsen repositories.
amundsen-common>=0.3.6,<1.0
# Library for rest endpoints with Flask
# Upstream url: https://github.com/flask-restful/flask-restful
flask-restful==0.3.8
# SDK for JIRA
jira==2.0.0
# Retrying library
retrying>=1.3.3,<2.0