Use pipenv (Pipfile) to maintain development environment

This commit is contained in:
medmunds
2018-08-19 12:29:00 -07:00
parent e44978daf7
commit be7cc10a35
2 changed files with 30 additions and 0 deletions

26
Pipfile Normal file
View File

@@ -0,0 +1,26 @@
# This Pipfile is used solely to manage a development environment
# -- it doesn't factor into the released package.
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
boto3 = "*"
django = "*"
requests = "*"
six = "*"
sparkpost = "*"
[dev-packages]
detox = "*"
flake8 = "*"
mock = "*"
sphinx = "*"
sphinx-rtd-theme = "*"
tox = "*"
twine = "*"
[requires]
python_version = "3.6"