aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2020-06-16 17:31:51 -0700
committerBryan Newbold <bnewbold@archive.org>2020-06-16 17:36:38 -0700
commitc5568ce9a5681da23aa2cd89993c3999a2d6bd21 (patch)
tree1aad7fd47b64e8daee13c6533c88b5cae54a5636
parent93f20f9fb970e0b5f4d70b04899f1730354258e0 (diff)
downloadsandcrawler-c5568ce9a5681da23aa2cd89993c3999a2d6bd21.tar.gz
sandcrawler-c5568ce9a5681da23aa2cd89993c3999a2d6bd21.zip
pipenv: flake8, pytype, black
-rw-r--r--python/Pipfile7
1 files changed, 7 insertions, 0 deletions
diff --git a/python/Pipfile b/python/Pipfile
index ad582dd..65317af 100644
--- a/python/Pipfile
+++ b/python/Pipfile
@@ -18,6 +18,9 @@ pytest-mock = "*"
pylint = "*"
ipython = "*"
mypy = "*"
+pytype = "*"
+flake8 = "*"
+flake8-annotations = "*"
[packages]
requests = ">=2"
@@ -36,6 +39,10 @@ urlcanon = "*"
pillow = ">=3"
poppler = ">=0.2"
+# must lock black to an exact version because it is still "beta"
+# see: https://github.com/psf/black/issues/517
+black = "==19.10b0"
+
[requires]
python_version = "3.7"