blob: c054155a08c49200ed46a3f8b74292b85364c649 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import os
def oncreate_init_py_structure(unit, *args):
if unit.get('DISTBUILD') or unit.get('AUTOCHECK'):
return
target_dir = unit.get('PY_PROTOS_FOR_DIR')
path_list = target_dir.split(os.path.sep)[1:]
inits = [os.path.join("${ARCADIA_BUILD_ROOT}", '__init__.py')]
for i in range(1, len(path_list) + 1):
inits.append(os.path.join("${ARCADIA_BUILD_ROOT}", os.path.join(*path_list[0:i]), '__init__.py'))
unit.ontouch(inits)
|