canaille-globuzma/build.py

12 lines
250 B
Python
Raw Normal View History

import subprocess
2022-05-14 21:58:26 +00:00
def create_mo_files(setup_kwargs):
print("Compile translations:")
subprocess.run(["pybabel", "compile", "--directory", "canaille/translations"])
return setup_kwargs
if __name__ == "__main__":
create_mo_files({})