Lines Matching refs:distribution
248 # distribution. Thus, this code makes a pretty important policy
308 self.config_vars = {'dist_name': self.distribution.get_name(),
309 'dist_version': self.distribution.get_version(),
310 'dist_fullname': self.distribution.get_fullname(),
355 # module distribution is pure or not. Of course, if the user
358 if self.distribution.ext_modules: # has extensions: non-pure
515 self.extra_path = self.distribution.extra_path
570 build_plat = self.distribution.get_command_obj('build').plat_name
652 """Returns true if the current distribution has any Python
654 return (self.distribution.has_pure_modules() or
655 self.distribution.has_ext_modules())
658 """Returns true if the current distribution has any headers to
660 return self.distribution.has_headers()
663 """Returns true if the current distribution has any scripts to.
665 return self.distribution.has_scripts()
668 """Returns true if the current distribution has any data to.
670 return self.distribution.has_data_files()