summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: c087af811222b8bc1d7fd37dfe4daf05b8f71555 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[tool:pytest]
testpaths = t/unit/
python_classes = test_*

[build_sphinx]
source-dir = docs/
build-dir = docs/_build
all_files = 1

[flake8]
# classes can be lowercase, arguments and variables can be uppercase
# whenever it makes the code more readable.
extend-ignore = W504, N806, N802, N801, N803

[isort]
add_imports =
    from __future__ import annotations

[mypy]
warn_unused_configs = True
strict = False
follow_imports = skip
show_error_codes = True
disallow_untyped_defs = True
ignore_missing_imports = True
files =
    kombu/abstract.py,
    kombu/utils/time.py,
    kombu/utils/uuid.py,
    t/unit/utils/test_uuid.py,
    kombu/utils/text.py,
    kombu/exceptions.py,
    t/unit/test_exceptions.py,
    kombu/clocks.py,
    t/unit/test_clocks.py,
    kombu/__init__.py,
    kombu/asynchronous/__init__.py,
    kombu/asynchronous/aws/__init__.py,
    kombu/asynchronous/aws/ext.py,
    kombu/asynchronous/aws/sqs/__init__.py,
    kombu/asynchronous/aws/sqs/ext.py,
    kombu/asynchronous/http/__init__.py,
    kombu/transport/__init__.py,
    kombu/transport/virtual/__init__.py,
    kombu/utils/__init__.py,
    kombu/matcher.py,
    kombu/asynchronous/semaphore.py


[pep257]
ignore = D102,D107,D104,D203,D105,D213,D401,D413,D417

[bdist_rpm]
requires = amqp >= 5.

[metadata]
license_file = LICENSE