-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.cfg
More file actions
48 lines (40 loc) · 825 Bytes
/
setup.cfg
File metadata and controls
48 lines (40 loc) · 825 Bytes
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
[nosetests]
match=^test
nocapture=1
cover-package=caramel
with-coverage=1
cover-erase=1
[compile_catalog]
directory = caramel/locale
domain = caramel
statistics = true
[extract_messages]
add_comments = TRANSLATORS:
output_file = caramel/locale/caramel.pot
width = 80
[init_catalog]
domain = caramel
input_file = caramel/locale/caramel.pot
output_dir = caramel/locale
[update_catalog]
domain = caramel
input_file = caramel/locale/caramel.pot
output_dir = caramel/locale
previous = true
[flake8]
max-line-length = 88
extend-ignore = E203
# mypy related settings
[mypy]
plugins = sqlalchemy.ext.mypy.plugin
[mypy-pyramid.*]
ignore_missing_imports = True
[mypy-transaction]
ignore_missing_imports = True
[mypy-zope.*]
ignore_missing_imports = True
[pylint]
generated-members=
scoped_session,
Base,
DBSession,