summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: 67af8ef06a913859e4518f019abb425851d49954 (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
[bdist_wheel]
universal = 1

[sdist]
formats = zip,gztar

[pytest]
flakes-ignore = 
    natsort/compat/py23.py UndefinedName
    natsort/__init__.py UnusedImport
    natsort/compat/* UnusedImport
    docs/source/conf.py ALL
    test_natsort/test_natsort.py UnusedImport RedefinedWhileUnused
    test_natsort/test_locale_help.py UnusedImport RedefinedWhileUnused
    test_natsort/compat/* UnusedImport

pep8ignore =
    natsort/ns_enum.py E126 E241 E123 E221
    test_natsort/test_*.py E501 E241 E221
    test_natsort/test_natsort_keygen.py E501 E241 E221 E701
    test_natsort/profile_natsorted.py ALL
    docs/source/conf.py ALL

[flake8]
max-line-length = 160
ignore = E231,E302