From add401b621068e0a1ebcf181b6040c48194624aa Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Thu, 21 Oct 2021 14:00:43 -0700 Subject: pipfile for development --- Pipfile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Pipfile diff --git a/Pipfile b/Pipfile new file mode 100644 index 0000000..5795844 --- /dev/null +++ b/Pipfile @@ -0,0 +1,21 @@ +# this pipenv 'Pipfile' is only for development and testing; the library itself +# has no dependencies beyond the Python 3 standard library + +[[source]] +url = "https://pypi.org/simple" +verify_ssl = true +name = "pypi" + +[packages] + +[dev-packages] +flake8 = "*" +flake8-annotations = "*" +mypy = "*" +pytest = "*" +pytest-cov = "*" +typing_extensions = "*" +yapf = "*" + +[requires] +python_version = "3.8" -- cgit v1.2.3