-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
35 lines (31 loc) · 985 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
[isort]
line_length = 160
combine_as_imports = true
order_by_type = false
add_imports = from __future__ import unicode_literals
known_first_party = sickbeard, sickchill
not_skip = __init__.py
# We skip this file because the pytz needs to be before sickbeard.subtitles
skip_glob = */sickbeard/__init__.py
# Fixes sections for vendored packages, when lib/ is first in $PATH
default_section = THIRDPARTY
[extract_messages]
width = 80
charset = utf-8
output-file = locale/messages.pot
# keywords to look for in addition to the defaults.
keywords = _n:1,2
copyright-holder = SickChill
msgid-bugs-address = [email protected]
# place comment block with TAG (or those preceding keyword lines) in output file. Separate multiple TAGs with commas(,)
add-comments = TRANSLATORS:
[compile_catalog]
directory = locale
[init_catalog]
output-dir = locale
input-file = locale/messages.pot
[update_catalog]
output-dir = locale
input-file = locale/messages.pot
ignore-obsolete = true
previous = true