예제 #1
0
파일: commands.py 프로젝트: DemOneEh/shoop
 def get_sub_commands(self):
     super_cmds = du_build.get_sub_commands(self)
     my_cmds = [
         BuildProductionResourcesCommand.command_name,
         BuildMessagesCommand.command_name,
     ]
     return my_cmds + super_cmds
예제 #2
0
 def get_sub_commands(self):
     super_cmds = du_build.get_sub_commands(self)
     my_cmds = [
         BuildProductionResourcesCommand.command_name,
         BuildMessagesCommand.command_name,
     ]
     return my_cmds + super_cmds
예제 #3
0
 def get_sub_commands(self):
     # Force "build_ext" invocation.
     commands = build.get_sub_commands(self)
     for c in commands:
         if c == 'build_ext':
             return commands
     return ['build_ext'] + commands
예제 #4
0
파일: setup.py 프로젝트: anyuzx/llvmlite
 def get_sub_commands(self):
     # Force "build_ext" invocation.
     commands = build.get_sub_commands(self)
     for c in commands:
         if c == 'build_ext':
             return commands
     return ['build_ext'] + commands
예제 #5
0
파일: setup.py 프로젝트: Oiwen/pysmoothspl
 def get_sub_commands(self):
     # Force "build_clib"/"build_ext" invocation.
     commands = build.get_sub_commands(self)
     if 'build_ext' not in commands:
         commands.insert(0, 'build_ext')
     if 'build_clib' not in commands:
         commands.insert(0, 'build_clib')
     return commands
예제 #6
0
 def get_sub_commands(self):
     sub_commands = _build.get_sub_commands(self)
     print sub_commands
     return [
         ('compile_catalog', None),
     ] + sub_commands
예제 #7
0
 def get_sub_commands(self):
     return _build.get_sub_commands(self) + ["build_doc"]
예제 #8
0
 def get_sub_commands(self):
   return _build.get_sub_commands(self) + ["build_doc"]
예제 #9
0
파일: setup.py 프로젝트: Bouska/Turpial
 def get_sub_commands(self):
     sub_commands = _build.get_sub_commands(self)
     print sub_commands
     return [('compile_catalog', None), ] + sub_commands