Home | History | Annotate | Download | only in distutils

Lines Matching refs:author

84         ('author', None,
85 "print the author's name"),
86 ('author-email', None,
87 "print the author's email address"),
93 "print the maintainer's name if known, else the author's"),
95 "print the maintainer's email address if known, else the author's"),
146 # Store the distribution meta-data (name, version, author, and so
1013 author, and so forth.
1016 _METHOD_BASENAMES = ("name", "version", "author", "author_email",
1032 self.author = None
1069 # we are filling author only.
1070 self.author = _read_field('author')
1072 self.author_email = _read_field('author-email')
1123 self._write_field(file, 'Author', self.get_contact())
1124 self._write_field(file, 'Author-email', self.get_contact_email())
1170 return self._encode_field(self.author) or "UNKNOWN"
1183 self._encode_field(self.author) or "UNKNOWN")