Lines Matching refs:setup_py
259 egg_path = self._build_egg_using_setup_py(setup_py='setup.py')
267 egg_path = self._build_egg_using_setup_py(setup_py='setupegg.py')
341 def _build_using_setup_py(self, setup_py='setup.py'): argument
350 if not os.path.exists(setup_py):
351 raise Error('%s does not exist in %s' % (setup_py, os.getcwd()))
352 status = system("'%s' %s build" % (sys.executable, setup_py))
359 def _build_egg_using_setup_py(self, setup_py='setup.py'): argument
368 if not os.path.exists(setup_py):
369 raise Error('%s does not exist in %s' % (setup_py, os.getcwd()))
373 status = system("'%s' %s bdist_egg" % (sys.executable, setup_py))
448 setup_py='setup.py',
468 if not os.path.exists(setup_py):
469 raise Error('%s does not exist in %s' % (setup_py, os.getcwd()))
476 % (sys.executable, setup_py, temp_dir))