-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
40 lines (34 loc) · 850 Bytes
/
setup.cfg
File metadata and controls
40 lines (34 loc) · 850 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
[egg_info]
tag_build = dev
tag_svn_revision = true
[pytest]
addopts =
--doctest-modules --doctest-glob='*.rst' --capture=no
--cov=project_name --cov-report=term-missing
--strict
--tb=native
--pep8
--ignore=project_name/templates/
project_name/
python_files = test*py
markers =
user: mark test to be run as the given user
pep8: mark for pep8
[aliases]
[compile_catalog]
directory = project_name/locale
domain = project_name
statistics = true
[extract_messages]
add_comments = TRANSLATORS:
output_file = project_name/locale/project_name.pot
width = 80
[init_catalog]
domain = project_name
input_file = project_name/locale/project_name.pot
output_dir = project_name/locale
[update_catalog]
domain = project_name
input_file = project_name/locale/project_name.pot
output_dir = project_name/locale
previous = true