From c7f5301d8568cde334228531efae27aee9464d68 Mon Sep 17 00:00:00 2001 From: cclecle Date: Mon, 6 Nov 2023 13:57:36 +0000 Subject: [PATCH] update toml to new helper config add python 3.11 support --- pyproject.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index fda887d..f00152f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,6 +31,7 @@ classifiers = [ "Development Status :: 4 - Beta", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.11", ] dependencies = [ 'importlib-metadata; python_version<"3.9"', @@ -48,6 +49,20 @@ where = ["src"] [tool.setuptools.package-data] "pysimpleini" = ["py.typed"] +# [[tool.mypy.overrides]] +# module = "" +# ignore_missing_imports = true + +[tool.coverage.run] +cover_pylib = false +branch = true +data_file="helpers-results/cl_unit_test_raw_coverage/.coverage" +# debug = ["config","multiproc","process"] +parallel = true +concurrency = [ + 'thread' +] + [project.urls] Homepage = "https://chacha.ddns.net/gitea/chacha/pysimpleini" Documentation = "https://chacha.ddns.net/mkdocs-web/chacha/pysimpleini/master/latest/"