1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
gh-webhook-actor/Pipfile

29 lines
457 B
Text
Raw Normal View History

2018-10-25 13:19:46 +01:00
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
flask = "*"
github-webhook = "*"
waitress = "*"
2018-10-28 11:20:53 +00:00
sentry-sdk = {extras = ["flask"], version = "*"}
2018-10-25 13:19:46 +01:00
[dev-packages]
2018-10-25 19:55:17 +01:00
black = "*"
isort = "*"
mypy = "*"
"flake8" = "*"
2018-10-26 09:16:14 +01:00
"nose2" = "*"
2018-10-25 13:19:46 +01:00
[requires]
python_version = "3.7"
[scripts]
2018-10-26 09:19:47 +01:00
start = "waitress-serve app.server:app"
2018-10-25 19:55:17 +01:00
test-fix = "bash ./scripts/test-fix.sh"
test = "bash ./scripts/test.sh"
[pipenv]
allow_prereleases = true