Home | History | Annotate | Download | only in distutils

Lines Matching defs:Distribution

3 Provides the Distribution class, which represents the module distribution
33 # be converted to a list by Distribution.finalize_options().
44 class Distribution:
46 is really done within a Distribution instance, which farms the work out
49 Setup scripts will almost never instantiate Distribution directly,
52 Distribution for some specialized purpose, and then pass the subclass
54 necessary to respect the expectations that 'setup' has of Distribution.
137 """Construct a new Distribution instance: initialize all the
138 attributes of a Distribution, and then use 'attrs' (a dictionary
154 # Store the distribution meta-data (name, version, author, and so
203 # than of the Distribution itself. We provide aliases for them in
204 # Distribution as a convenience to the developer.
239 # distribution options.
257 msg = "'licence' distribution option is deprecated; use 'license'"
273 msg = "Unknown distribution option: %s" % repr(key)
400 self.announce("Distribution.parse_config_files():")
422 # to set Distribution options.
443 "global options" -- options that set attributes of the Distribution
609 """Set final values for all the options on the Distribution
854 self.announce("Distribution.get_command_obj(): "
955 # -- Methods that operate on the Distribution ----------------------
988 # -- Distribution query methods ------------------------------------
1024 """Dummy class to hold the distribution meta-data: name, version,