-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
executable file
·58 lines (45 loc) · 1.44 KB
/
setup.py
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
import distutils
import glob
import os
import subprocess # nosec
from distutils.cmd import Command
from distutils.command.build import build as _build
from distutils.command.install import install as _install
from setuptools import setup
BASE_DIR = os.path.dirname((os.path.abspath(__file__)))
class compile_translations(Command):
description = "Compile i18n translations using gettext."
user_options = []
def initialize_options(self):
self.build_lib = None
def finalize_options(self):
self.set_undefined_options("build", ("build_lib", "build_lib"))
def run(self):
pattern = "vies/locale/*/LC_MESSAGES/django.po"
for file in glob.glob(pattern):
name, ext = os.path.splitext(file)
cmd = ["msgfmt", "-c", "-o", f"{self.build_lib}/{name}.mo", file]
self.announce(
"running command: %s" % " ".join(cmd), level=distutils.log.INFO
)
subprocess.check_call(cmd, cwd=BASE_DIR) # nosec
class build(_build):
sub_commands = [
*_build.sub_commands,
("compile_translations", None),
]
class install(_install):
sub_commands = [
*_install.sub_commands,
("compile_translations", None),
]
setup(
name="django-vies",
use_scm_version=True,
cmdclass={
"build": build,
"install": install,
"compile_translations": compile_translations,
},
)