Searched refs:setup_py (Results 1 – 9 of 9) sorted by relevance
| /external/python/pybind11/ |
| D | setup.py | 27 setup_py = "tools/setup_global.py.in" if global_sdist else "tools/setup_main.py.in" variable 32 ("setup.py", setup_py), 113 txt = get_and_replace(setup_py, version=version, extra_cmd=extra_cmd) 114 code = compile(txt, setup_py, "exec")
|
| /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/pybind11/tests/extra_python_package/ |
| D | test_files.py | 127 setup_py = f.read() 147 assert setup_py == contents 182 setup_py = f.read() 200 assert setup_py == contents
|
| /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/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))
|