Ejemplo n.º 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(',')]
Ejemplo n.º 2
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(',')
     ]
Ejemplo n.º 3
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'),)
Ejemplo n.º 4
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'),)