mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-28 01:12:38 +02:00
11 lines
297 B
Python
11 lines
297 B
Python
import sys
|
|
|
|
from hatchling.builders.hooks.plugin.interface import BuildHookInterface
|
|
|
|
|
|
class CustomBuildHook(BuildHookInterface):
|
|
def initialize(self, version, build_data):
|
|
sys.path.insert(0, "./ihatemoney")
|
|
from babel_utils import compile_catalogs
|
|
|
|
compile_catalogs()
|