From 07fd2fc7b1f8aab05b929b3937d33c8e5fd260e4 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Thu, 17 Jun 2021 17:18:57 -0400 Subject: [PATCH] chore: mypy extra and mypy types --- setup.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4ed6ac54..3074dc9c 100644 --- a/setup.py +++ b/setup.py @@ -21,10 +21,21 @@ extras = { "rich>=9.6", "packaging>=20.8", ], + "mypy": [ + "mypy>=0.901", + "types-jinja2", + "types-certifi", + "types-toml", + "types-jinja2", + "types-pyyaml", + "types-click", + "types-requests", + "types-toml", + ], } extras["dev"] = [ - "mypy>=0.901", + *extras["mypy"], *extras["test"], *extras["bin"], ]