diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-11-02 12:14:32 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-11-02 17:02:49 -0700 |
commit | aca29bf538c19e6fb02b4a0175e4f09a23267299 (patch) | |
tree | 9fd2771c42b1d32d797f4ff99d5cffb4d686dbbf | |
parent | a0d89d08b40c07b13a76a8afd020b0d1e62e58aa (diff) | |
download | fatcat-aca29bf538c19e6fb02b4a0175e4f09a23267299.tar.gz fatcat-aca29bf538c19e6fb02b4a0175e4f09a23267299.zip |
pipenv: additional dev tools (black, types, isort, mypy)
-rw-r--r-- | python/Pipfile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/python/Pipfile b/python/Pipfile index 4b9f086b..ea057ea0 100644 --- a/python/Pipfile +++ b/python/Pipfile @@ -17,6 +17,17 @@ pytest-cov = "==2.*" pylint = "==2.*" pytest-mock = "==3.*" flake8 = "==3.*" +flake8-annotations = "*" +mypy = "*" +typing_extensions = "*" +isort = "*" +types-requests = "*" +types-beautifulsoup4 = "*" +types-toml = "*" +types-dateparser = "*" +# must lock black to an exact version because it is still "beta" +# see: https://github.com/psf/black/issues/517 +black = "==21.9b0" [packages] fatcat-openapi-client = {path = "./../python_openapi_client"} |