コード例 #1
0
ファイル: bdist.py プロジェクト: CARIBOuSystem/PyQwt
 def run(self):
     tag = '_Qt%s%s%s' % tuple(
         get_config('qt').get('qt_version_str').split('.'))
     name = self.distribution.metadata.name
     if -1 == name.find(tag):
         self.distribution.metadata.name = name + tag
     old_bdist.run(self)
コード例 #2
0
 def run(self):
     tag = '_Qt%s%s%s' % tuple(
         get_config('qt').get('qt_version_str').split('.'))
     name = self.distribution.metadata.name
     if -1 == name.find(tag):
         self.distribution.metadata.name = name + tag
     old_bdist.run(self)
コード例 #3
0
ファイル: setup.py プロジェクト: kyledj/pyzmq
 def run(self):
     libzmq = 'libzmq'+lib_ext
     # copy libzmq into zmq for bdist
     try:
         shutil.copy(pjoin(ZMQ, 'lib', libzmq), localpath('zmq',libzmq))
     except Exception:
         if not os.path.exists(localpath('zmq',libzmq)):
             raise IOError("Could not copy libzmq into zmq/, which is necessary for bdist."
             "Please specify zmq prefix via configure --zmq=/path/to/zmq or copy "
             "libzmq into zmq/ manually.")
     
     bdist.run(self)
コード例 #4
0
    def run(self):
        libzmq = 'libzmq' + lib_ext
        # copy libzmq into zmq for bdist
        try:
            shutil.copy(pjoin(ZMQ, 'lib', libzmq), localpath('zmq', libzmq))
        except Exception:
            if not os.path.exists(localpath('zmq', libzmq)):
                raise IOError(
                    "Could not copy libzmq into zmq/, which is necessary for bdist."
                    "Please specify zmq prefix via configure --zmq=/path/to/zmq or copy "
                    "libzmq into zmq/ manually.")

        bdist.run(self)
コード例 #5
0
ファイル: setup.py プロジェクト: rserran/catboost
 def run(self):
     Helper.propagate_options(self, "bdist", "build_ext")
     _bdist.run(self)
コード例 #6
0
 def run(self):
     bdist.run(self)
     check_versions()
コード例 #7
0
ファイル: setup.py プロジェクト: zwb291560602/pyleus
    def run(self):
        for cmd_name in self.get_sub_commands():
            self.run_command(cmd_name)

        _bdist.run(self)
コード例 #8
0
 def run(self):
    global using_bdist
    using_bdist = 1
    bdist.run(self)
コード例 #9
0
 def run(self):
     _bdist.run(self)
コード例 #10
0
ファイル: bdist.py プロジェクト: LANJr4D/FRED
 def run(self):
     _bdist.run(self)
コード例 #11
0
ファイル: setup.py プロジェクト: baris/pyleus
    def run(self):
        for cmd_name in self.get_sub_commands():
            self.run_command(cmd_name)

        _bdist.run(self)
コード例 #12
0
 def run(self):
     self.distribution.metadata.version = set_version()
     du_bdist.run(self)
コード例 #13
0
ファイル: setup.py プロジェクト: pinno/seal
 def run(self):
     self.distribution.metadata.version = set_version()
     du_bdist.run(self)
コード例 #14
0
ファイル: setup.py プロジェクト: eevee/cgettext
 def run(self):
     from Cython.Build import cythonize
     cythonize(['_cgettext.pyx'])
     _bdist.run(self)