Home
last modified time | relevance | path

Searched refs:setup_py (Results 1 – 13 of 13) sorted by relevance

/external/dtc/pylibfdt/
Dmeson.build1 setup_py = find_program('../setup.py') variable
2 setup_py = [setup_py.path(), '--quiet', '--top-builddir', meson.project_build_root()] variable
8 command: [setup_py, 'build_ext', '--build-lib=' + meson.current_build_dir()],
12 meson.add_install_script(setup_py, 'install', '--prefix=' + get_option('prefix'), '--root=$DESTDIR')
/external/python/pybind11/
Dsetup.py27 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/autotest/utils/
Dexternal_packages.py259 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))
[all …]
/external/python/pybind11/tests/extra_python_package/
Dtest_files.py127 setup_py = f.read()
147 assert setup_py == contents
182 setup_py = f.read()
200 assert setup_py == contents
/external/python/setuptools/setuptools/tests/
Dtest_sandbox.py37 setup_py = tmpdir / 'setup.py'
38 with setup_py.open('wb') as stream:
40 setuptools.sandbox._execfile(str(setup_py), globals())
Dtest_logging.py6 setup_py = """\ variable
30 setup_script.write_text(setup_py)
Dnamespaces.py7 setup_py = src_dir / 'setup.py'
18 setup_py.write_text(script, encoding='utf-8')
Dtest_easy_install.py690 setup_py = str(pathlib.Path(temp_dir, 'test_pkg', 'setup.py'))
692 run_setup(setup_py, [str('--version')])
862 setup_py = DALS("""\
874 files = [('setup.py', setup_py),
/external/pigweed/pw_build/py/pw_build/
Dpython_package.py119 def setup_py(self) -> Path: member in PythonPackage
120 setup_py = [
126 assert len(setup_py) == 1
127 return setup_py[0]
/external/python/cpython2/Lib/distutils/tests/
Dtest_core.py79 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/
Dtest_core.py109 setup_py = os.path.join(os_helper.TESTFN, "setup.py")
111 self.write_setup(setup_prints_cwd, path=setup_py))
/external/python/setuptools/setuptools/_distutils/tests/
Dtest_core.py120 setup_py = os.path.join(os_helper.TESTFN, "setup.py")
122 self.write_setup(setup_prints_cwd, path=setup_py))
/external/python/setuptools/setuptools/tests/config/
Dtest_setupcfg.py32 tmpdir, setup_cfg, setup_py=None, encoding='ascii', package_path='fake_package' argument
35 if setup_py is None:
36 setup_py = 'from setuptools import setup\n' 'setup()\n'
38 tmpdir.join('setup.py').write(setup_py)