forked from RedHatInsights/drift-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
41 lines (37 loc) · 848 Bytes
/
Pipfile
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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
coverage = "*"
flake8 = "*"
mock = "*"
pytest = "*"
pytest-cov = "*"
pytest-flask = "*"
pytest-black = "*"
pytest-mock = "*"
responses = "*"
yamllint = "*"
black = "==21.6b0"
ipython = "*"
openapi-spec-validator = "*"
ipdb = "*"
toml = "*"
[packages]
connexion = {extras = ["swagger-ui"],version = "==2.5.1"} # 2.6.0 is stricter, need to fix openapi spec to upgrade
Flask = "==1.1.4"
gunicorn = "*"
prometheus_client = "*"
bitmath = "*"
boto3 = "*"
watchtower = "*"
insights-core = "*"
kerlescan = {editable = true, ref = "0.75", git = "https://github.com/RedHatInsights/kerlescan.git"}
python-dateutil = "*"
app-common-python = "*"
[requires]
python_version = "3.8"
[scripts]
flask = "python standalone_flask_server.py"
tests = "bash run_unit_tests.sh"