forked from gunthercox/ChatterBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
34 lines (30 loc) · 884 Bytes
/
setup.cfg
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
[wheel]
universal = 1
[bdist_wheel]
universal = 1
[metadata]
description-file = readme.md
[nosetests]
exclude-dir=tests_django
[flake8]
# F812: list comprehension redefines ...
# H202: assertRaises Exception too broad
# H233: Python 3.x incompatible use of print operator
# H301: one import per line
# H306: imports not in alphabetical order (time, os)
# H401: docstring should not start with a space
# H403: multi line docstrings should end on a new line
# H404: multi line docstring should start without a leading new line
# H405: multi line docstring summary not separated with an empty line
# H501: Do not use self.__dict__ for string formatting
# W292 no newline at end of file
# F401 imported but unused
ignore = F812,H202,H233,H301,H306,H401,H403,H404,H405,H501,W292,F401
max_line_length = 175
exclude =
.eggs,
.git,
__pycache__,
build,
docs,
tests,