blob: e9018e7d0ba9067654bffc2d4ee65a5a2366578b (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
[project]
name = 'immutables'
requires-python = ">=3.6"
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--capture=no --assert=plain --strict-markers --tb=native --import-mode=importlib"
testpaths = "tests"
filterwarnings = "default"
[tool.mypy]
incremental = true
strict = true
[[tool.mypy.overrides]]
module = "immutables.map"
ignore_errors = true
[[tool.mypy.overrides]]
module = "immutables._testutils"
ignore_errors = true
|