Example #1
0
 def contributors(self):
     """The Contributors of the plugin."""
     data = self.metadata.get('contributors', '')
     if not data:
         return []
     return [split_email(c.strip()) for c in
     self.metadata.get('contributors', '').split(',')]
Example #2
0
 def author_info(self):
     """The author, mail and author URL of the plugin."""
     return split_email(self.metadata.get('author', u'Nobody')) + \
            (self.metadata.get('author_url'),)