Searched refs:setup_py (Results 1 – 7 of 7) sorted by relevance
/external/autotest/utils/ |
D | external_packages.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)) [all …]
|
/external/python/setuptools/setuptools/tests/ |
D | test_sandbox.py | 36 setup_py = tmpdir / 'setup.py' 37 with setup_py.open('wb') as stream: 39 setuptools.sandbox._execfile(str(setup_py), globals())
|
D | namespaces.py | 9 setup_py = src_dir / 'setup.py' 20 setup_py.write_text(script, encoding='utf-8')
|
D | test_config.py | 19 def fake_env(tmpdir, setup_cfg, setup_py=None): argument 21 if setup_py is None: 22 setup_py = ( 27 tmpdir.join('setup.py').write(setup_py)
|
D | test_easy_install.py | 583 setup_py = DALS("""\ 595 files = [('setup.py', setup_py),
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_core.py | 79 setup_py = os.path.join(test.test_support.TESTFN, "setup.py") 81 self.write_setup(setup_prints_cwd, path=setup_py))
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_core.py | 109 setup_py = os.path.join(test.support.TESTFN, "setup.py") 111 self.write_setup(setup_prints_cwd, path=setup_py))
|