summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Helmert III <ajak@gentoo.org>2023-12-25 14:29:24 -0800
committerJohn Helmert III <ajak@gentoo.org>2023-12-25 14:30:36 -0800
commit67e6b8bd06cfd6133148275c30c227d1d5a8e6c7 (patch)
treef2fbee50d447276089d57ed8ba83439bf8ad629c
parentmodels/glsa: add a bunch of return typing (diff)
downloadglsamaker-67e6b8bd06cfd6133148275c30c227d1d5a8e6c7.tar.gz
glsamaker-67e6b8bd06cfd6133148275c30c227d1d5a8e6c7.tar.bz2
glsamaker-67e6b8bd06cfd6133148275c30c227d1d5a8e6c7.zip
move all dependencies out of tox.ini into setup.cfg
Signed-off-by: John Helmert III <ajak@gentoo.org>
-rw-r--r--setup.cfg10
-rw-r--r--tox.ini11
2 files changed, 15 insertions, 6 deletions
diff --git a/setup.cfg b/setup.cfg
index bfc24d0..5c601f0 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -27,4 +27,12 @@ install_requires =
* = templates/*, static/*
[options.extras_require]
-test = pytest
+test =
+ pytest
+type =
+ mypy
+ types-tabulate
+lint =
+ black
+ colorama
+ isort
diff --git a/tox.ini b/tox.ini
index 3c67872..dbb3b32 100644
--- a/tox.ini
+++ b/tox.ini
@@ -16,17 +16,18 @@ commands =
[testenv:lint]
deps =
- black
- colorama
- isort
+ .
+extras =
+ lint
commands =
black --check --diff --color .
isort --check --diff --color .
[testenv:type]
deps =
- mypy
- types-tabulate
+ .
+extras =
+ type
commands =
mypy --config-file mypy.ini glsamaker