Lines Matching full:dist
39 dist = Distribution({"name": "foopkg"})
41 dist.script_name = os.path.join(builddir, "setup.py")
42 dist.command_obj["build"] = support.DummyCommand(
47 cmd = install(dist)
99 dist = Distribution({'name': 'xx'})
100 cmd = install(dist)
125 dist = Distribution({'name': 'xx', 'extra_path': 'path,dirs'})
126 cmd = install(dist)
142 dist.extra_path = cmd.extra_path = None
153 dist = Distribution({'name': 'xx'})
154 cmd = install(dist)
175 project_dir, dist = self.create_dist(py_modules=['hello'],
181 cmd = install(dist)
182 dist.command_obj['install'] = cmd
201 project_dir, dist = self.create_dist(ext_modules=[
206 buildextcmd = build_ext(dist)
210 cmd = install(dist)
211 dist.command_obj['install'] = cmd
212 dist.command_obj['build_ext'] = buildextcmd