-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathPipfile
More file actions
38 lines (32 loc) · 724 Bytes
/
Pipfile
File metadata and controls
38 lines (32 loc) · 724 Bytes
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
flask = "==3.1.3"
flask-sqlalchemy = "==3.1.1"
psycopg = {extras = ["binary"], version = "==3.3.2"}
retry2 = "~=0.9.5"
python-dotenv = "~=1.2.1"
gunicorn = "~=25.0.0"
[dev-packages]
# Code Quality
pylint = "~=4.0.4"
flake8 = "~=7.3.0"
black = "~=26.1.0"
# Test-Driven Development
pytest = "~=9.0.2"
pytest-pspec = "~=0.0.4"
pytest-cov = "~=7.0.0"
factory-boy = "~=3.3.3"
coverage = "~=7.13.2"
# Utility
honcho = "~=2.0.0"
httpie = "~=3.2.4"
# Behavior-Driven Development
behave = "~=1.3.3"
selenium = "==4.16.0" # newer versions like 4.41.0 do not work
requests = "~=2.32.5"
compare3 = "~=1.0.4"
[requires]
python_version = "3.12"