From 4a87b20f1a7eb5e9b8c77c5a87271c7a6872272f Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Mon, 2 Feb 2026 20:50:53 +0000 Subject: [PATCH] Initial upload: Code Privacy Shield v0.1.0 --- tox.ini | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tox.ini diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..3f53a90 --- /dev/null +++ b/tox.ini @@ -0,0 +1,17 @@ +[tox] +envlist = py39,py310,py311,py312 +skip_missing_interpreters = true + +[testenv] +deps = pytest +commands = pytest tests/ -v + +[flake8] +max-line-length = 100 +exclude = .git,__pycache__,build,dist + +[mypy] +python_version = 3.9 +warn_return_any = true +warn_unused_configs = true +ignore_missing_imports = true