forked from amundsen-io/amundsenfrontendlibrary
-
Notifications
You must be signed in to change notification settings - Fork 1
/
requirements.txt
90 lines (70 loc) · 2.34 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
84
85
86
87
88
89
# The modular source code checker: pep8, pyflakes and co
# License: MIT
# Upstream url: http://bitbucket.org/tarek/flake8
flake8==3.8.4
# A flake8 plugin that helps you write tidier imports.
# License: ISCL
# Upstream url: https://pypi.python.org/pypi/flake8-tidy-imports
flake8-tidy-imports==4.2.1
# A mature full-featured Python testing tool.
# License: MIT
# Upstream url: http://pytest.org/
pytest==6.2.2
# Pytest plugin for measuring coverage.
# License: MIT
# Upstream url: https://github.com/pytest-dev/pytest-cov
pytest-cov==2.11.1
# Rolling backport of unittest.mock for all Pythons
# License: BSD
# Upstream url: https://mock.readthedocs.io/en/latest/
mock==4.0.3
# 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==3.5.1
# Mypy is an optional static type checker for Python.
# License: MIT
# Upstream url: https://github.com/python/mypy
mypy==0.812
# 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.36.2
# HTTP for Humans
# License: Apache
# Upstream url: http://docs.python-requests.org/en/master/
requests==2.25.1
# A lightweight library for converting complex datatypes to and from native Python datatypes.
# License: MIT
# Upstream url: https://github.com/marshmallow-code/marshmallow
marshmallow>=3.0,<=3.6
# A utility library for mocking out the requests Python library.
# License: Apache 2.0
# Upstream url: https://pypi.org/project/responses/
responses==0.12.1
# Required for announcement client
SQLAlchemy==1.3.23
# A common package that holds the models deifnition and schemas that are used
# accross different amundsen repositories.
amundsen-common==0.9.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
# SDK for Asana
asana==0.10.3
# Retrying library
retrying>=1.3.3,<2.0
# Backport of PEP 557, Data Classes for Python 3.6.
# License: Apache 2.0
# Upstream url: https://pypi.org/project/dataclasses/
dataclasses==0.8; python_version < '3.7'