a b/setup.cfg
1
[bdist_wheel]
2
universal = 1
3
4
5
[pylama]
6
format = pylint
7
skip = */migrations/*
8
9
[pylama:pycodestyle]
10
max_line_length = 140
11
12
[tool:pytest]
13
testpaths = tests
14
norecursedirs =
15
    migrations
16
17
python_files =
18
    test_*.py
19
    *_test.py
20
    tests.py
21
addopts =
22
    -ra
23
#    --strict
24
    --doctest-modules
25
    --doctest-glob=\*.rst
26
    --tb=short
27
28
[isort]
29
force_single_line = True
30
line_length = 120
31
known_first_party = janggu
32
default_section = THIRDPARTY
33
forced_separate = test_janggu
34
not_skip = __init__.py
35
skip = migrations