-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
44 lines (34 loc) · 832 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
35
36
37
38
39
40
41
42
43
[bumpversion]
current_version = 1.4.0
allow_dirty = True
[bumpversion:file:original/__init__.py]
[extract_messages]
mapping_file = babel.cfg
copyright_holder = Gilles Dartiguelongue
output_file = original/translations/messages.pot
input_dirs = original
[init_catalog]
input_file = original/translations/messages.pot
output_dir = original/translations
[update_catalog]
input_file = original/translations/messages.pot
output_dir = original/translations
[compile_catalog]
directory = original/translations
statistics = True
[nosetests]
cover-package = original
with-coverage = 1
cover-erase = 1
cover-branches = 1
cover-min-percentage = 10
[coverage:run]
source = original
branch = True
omit = */tests/*
[coverage:report]
omit = */tests/*
[isort]
combine_as_imports = True
include_trailing_comma = True
multi_line_output = 3