Skip to content

Commit

Permalink
add pipfile for easier testing
Browse files Browse the repository at this point in the history
  • Loading branch information
djw4 committed Nov 18, 2021
1 parent b3d850b commit 73bd3ea
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
certifi = "==2020.12.5"
chardet = "==4.0.0"
click = "==7.1.2"
gunicorn = "==20.0.4"
idna = "==2.10"
itsdangerous = "==1.1.0"
requests = "==2.25.1"
urllib3 = "==1.26.5"
Flask = "==1.1.2"
Jinja2 = "==2.11.3"
MarkupSafe = "==1.1.1"
Werkzeug = "==1.0.1"

[dev-packages]

[requires]
python_version = "3.9"

[scripts]
app = "gunicorn -w 4 -b 0.0.0.0:5000 app:app"

0 comments on commit 73bd3ea

Please sign in to comment.