Searched refs:setup_py (Results 1 – 1 of 1) sorted by relevance
239 egg_path = self._build_egg_using_setup_py(setup_py='setup.py')247 egg_path = self._build_egg_using_setup_py(setup_py='setupegg.py')321 def _build_using_setup_py(self, setup_py='setup.py'): argument330 if not os.path.exists(setup_py):331 raise Error('%s does not exist in %s' % (setup_py, os.getcwd()))332 status = system("'%s' %s build" % (sys.executable, setup_py))339 def _build_egg_using_setup_py(self, setup_py='setup.py'): argument348 if not os.path.exists(setup_py):349 raise Error('%s does not exist in %s' % (setup_py, os.getcwd()))353 status = system("'%s' %s bdist_egg" % (sys.executable, setup_py))[all …]