From aecc18e6b2a984f226169dce5fb5bceee28672bb Mon Sep 17 00:00:00 2001 From: mcflugen Date: Fri, 5 Jan 2024 17:13:00 -0700 Subject: [PATCH] remove unnecessary configuration from pyproject.toml --- pyproject.toml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 47282e1..5a5b267 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -58,21 +58,6 @@ content-type = "text/x-rst" [tool.setuptools.dynamic.version] attr = "bmipy._version.__version__" -[tool.setuptools.package-data] -bmipy = [ - "py.typed", -] - -[tool.check-manifest] -ignore = [ - ".nox", - "build", -] - -[tool.isort] -combine_as_imports = true -profile = "black" - [tool.mypy] check_untyped_defs = true disallow_any_generics = true @@ -101,8 +86,3 @@ addopts = [ "--doctest-modules", "-vvv", ] -doctest_optionflags = [ - "NORMALIZE_WHITESPACE", - "IGNORE_EXCEPTION_DETAIL", - "ALLOW_UNICODE", -]