mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-20 03:41:05 -05:00
Use pipenv (Pipfile) to maintain development environment
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -9,3 +9,7 @@ build/
|
|||||||
dist/
|
dist/
|
||||||
docs/_build/
|
docs/_build/
|
||||||
local.py
|
local.py
|
||||||
|
|
||||||
|
# Because pipenv is only used to manage a local development
|
||||||
|
# environment, it's not helpful to track its lock file
|
||||||
|
Pipfile.lock
|
||||||
|
|||||||
26
Pipfile
Normal file
26
Pipfile
Normal 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"
|
||||||
Reference in New Issue
Block a user