示例#1
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
示例#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
 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