Completed
Push — master ( 545613...55df2f )
by Daniel
14s queued 11s
created

sources.localizations_setup   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

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