Lines Matching refs:setup_py
252 egg_path = self._build_egg_using_setup_py(setup_py='setup.py')
260 egg_path = self._build_egg_using_setup_py(setup_py='setupegg.py')
334 def _build_using_setup_py(self, setup_py='setup.py'): argument
343 if not os.path.exists(setup_py):
344 raise Error('%s does not exist in %s' % (setup_py, os.getcwd()))
345 status = system("'%s' %s build" % (sys.executable, setup_py))
352 def _build_egg_using_setup_py(self, setup_py='setup.py'): argument
361 if not os.path.exists(setup_py):
362 raise Error('%s does not exist in %s' % (setup_py, os.getcwd()))
366 status = system("'%s' %s bdist_egg" % (sys.executable, setup_py))
441 setup_py='setup.py',
461 if not os.path.exists(setup_py):
462 raise Error('%s does not exist in %s' % (setup_py, os.getcwd()))
469 % (sys.executable, setup_py, temp_dir))