Lines Matching refs:self
22 def initialize_options(self):
23 self.install_dir = None
24 self.force = 0
25 self.outfiles = []
27 def finalize_options(self):
28 self.set_undefined_options('install',
33 def run(self):
34 headers = self.distribution.headers
38 self.mkpath(self.install_dir)
40 (out, _) = self.copy_file(header, self.install_dir)
41 self.outfiles.append(out)
43 def get_inputs(self):
44 return self.distribution.headers or []
46 def get_outputs(self):
47 return self.outfiles