mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-28 17:32:38 +02:00
10 lines
296 B
Python
10 lines
296 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()
|