dpaste/Pipfile

17 lines
465 B
Text
Raw Normal View History

2018-01-08 03:20:50 +11:00
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
2019-01-25 23:47:00 +11:00
[packages]
2019-12-05 19:40:39 +11:00
dpaste = {editable = true,extras = ["dev"],path = "."}
2019-01-25 23:47:00 +11:00
[scripts]
runserver = "sh -c \"./manage.py migrate && ./manage.py runserver 0:8000\""
2019-12-05 19:40:39 +11:00
test = "pytest dpaste"
cleanup = "sh -c \"isort -rc dpaste && black --skip-string-normalization --line-length=80 --exclude='/(migrations)/' dpaste\""
docs = "sphinx-build docs docs/_build/html"
2019-01-25 23:47:00 +11:00
[pipenv]
allow_prereleases = true