added a LICENSE attribute
This commit is contained in:
parent
163fe6913e
commit
d15365fe26
5 changed files with 9 additions and 0 deletions
|
|
@ -23,6 +23,7 @@ class Backend:
|
|||
MAINTAINER = '<unspecifier>'
|
||||
EMAIL = '<unspecified>'
|
||||
VERSION = '<unspecified>'
|
||||
LICENSE = '<unspecified>'
|
||||
|
||||
def __init__(self, weboob):
|
||||
self.weboob = weboob
|
||||
|
|
|
|||
|
|
@ -22,6 +22,11 @@ from weboob.backend import Backend
|
|||
from weboob.capabilities.messages import ICapMessages, ICapMessagesReply
|
||||
|
||||
class AuMBackend(Backend, ICapMessages, ICapMessagesReply):
|
||||
MAINTAINER = 'Romain Bignon'
|
||||
EMAIL = 'romain@peerfuse.org'
|
||||
VERSION = '1.0'
|
||||
LICENSE = 'GPLv3'
|
||||
|
||||
def __init__(self, weboob):
|
||||
Backend.__init__(self, weboob)
|
||||
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@ class CanalTPBackend(Backend, ICapTravel):
|
|||
MAINTAINER = 'Romain Bignon'
|
||||
EMAIL = 'romain@peerfuse.org'
|
||||
VERSION = '1.0'
|
||||
LICENSE = 'GPLv3'
|
||||
|
||||
def __init__(self, weboob):
|
||||
Backend.__init__(self, weboob)
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@ class DLFPBackend(Backend, ICapMessages, ICapMessagesReply, ICapUpdatable):
|
|||
MAINTAINER = 'Romain Bignon'
|
||||
EMAIL = 'romain@peerfuse.org'
|
||||
VERSION = '1.0'
|
||||
LICENSE = 'GPLv3'
|
||||
|
||||
def __init__(self, weboob):
|
||||
Backend.__init__(self, weboob)
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ class TransilienBackend(Backend, ICapTravel):
|
|||
MAINTAINER = u'Julien Hébert'
|
||||
EMAIL = 'juke@free.fr'
|
||||
VERSION = '1.0'
|
||||
LICENSE = 'GPLv3'
|
||||
|
||||
def __init__(self, weboob):
|
||||
Backend.__init__(self, weboob)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue