Warning, /jana2/src/python/externals/pybind11-2.10.3/pyproject.toml is written in an unsupported language. File is not indexed.
0001 [build-system]
0002 requires = ["setuptools>=42", "cmake>=3.18", "ninja"]
0003 build-backend = "setuptools.build_meta"
0004
0005 [tool.check-manifest]
0006 ignore = [
0007 "tests/**",
0008 "docs/**",
0009 "tools/**",
0010 "include/**",
0011 ".*",
0012 "pybind11/include/**",
0013 "pybind11/share/**",
0014 "CMakeLists.txt",
0015 "noxfile.py",
0016 ]
0017
0018 [tool.isort]
0019 # Needs the compiled .so modules and env.py from tests
0020 known_first_party = "env,pybind11_cross_module_tests,pybind11_tests,"
0021 # For black compatibility
0022 profile = "black"
0023
0024 [tool.mypy]
0025 files = ["pybind11"]
0026 python_version = "3.6"
0027 strict = true
0028 show_error_codes = true
0029 enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
0030 warn_unreachable = true
0031
0032 [[tool.mypy.overrides]]
0033 module = ["ghapi.*", "setuptools.*"]
0034 ignore_missing_imports = true
0035
0036
0037 [tool.pytest.ini_options]
0038 minversion = "6.0"
0039 addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
0040 xfail_strict = true
0041 filterwarnings = ["error"]
0042 log_cli_level = "info"
0043 testpaths = [
0044 "tests",
0045 ]
0046 timeout=300
0047
0048
0049 [tool.pylint]
0050 master.py-version = "3.6"
0051 reports.output-format = "colorized"
0052 messages_control.disable = [
0053 "design",
0054 "fixme",
0055 "imports",
0056 "line-too-long",
0057 "imports",
0058 "invalid-name",
0059 "protected-access",
0060 "missing-module-docstring",
0061 ]