diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..20b77393 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,12 @@ +[build-system] +requires = ["setuptools>=60.0"] +build-backend = "setuptools.build_meta" + +[tool.pytest.ini_options] +addopts = "-raXs --durations 10 --color=yes --doctest-modules" +testpaths = [ + "tests/", +] +filterwarnings = [ + "error", +]