Passed
Push — master ( 04fbbf...5a831b )
by Daniel
01:17
created

project_locale.localizations_setup   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 8
dl 0
loc 14
rs 10
c 0
b 0
f 0
wmc 0
1
"""
2
localization_setup - facilitates localization activities
3
"""
4
# facilitate dependencies management
5
from setuptools import setup
6
# facilitate internationalization
7
from babel.messages import frontend
8
9
setup(
10
    cmdclass={
11
        'compile_catalog': frontend.compile_catalog,
12
        'init_catalog': frontend.init_catalog,
13
        'update_catalog': frontend.update_catalog
14
    }
15
)
16