Lines Matching refs:dist
48 dist = Distribution({"name": "foopkg"})
50 dist.script_name = os.path.join(builddir, "setup.py")
51 dist.command_obj["build"] = support.DummyCommand(
56 cmd = install(dist)
110 dist = Distribution({'name': 'xx'})
111 cmd = install(dist)
136 dist = Distribution({'name': 'xx', 'extra_path': 'path,dirs'})
137 cmd = install(dist)
153 dist.extra_path = cmd.extra_path = None
164 dist = Distribution({'name': 'xx'})
165 cmd = install(dist)
186 project_dir, dist = self.create_dist(py_modules=['hello'],
192 cmd = install(dist)
193 dist.command_obj['install'] = cmd
216 project_dir, dist = self.create_dist(ext_modules=[
221 buildextcmd = build_ext(dist)
225 cmd = install(dist)
226 dist.command_obj['install'] = cmd
227 dist.command_obj['build_ext'] = buildextcmd