Source code for projectreport.license.model
from enum import Enum
[docs]class LicenseType(str, Enum):
MIT = "MIT"
BSD = "BSD"
GPL = "GPL"
LGPL = "LGPL"
AGPL = "AGPL"
MPL = "MPL"
APACHE = "APACHE"
from enum import Enum
[docs]class LicenseType(str, Enum):
MIT = "MIT"
BSD = "BSD"
GPL = "GPL"
LGPL = "LGPL"
AGPL = "AGPL"
MPL = "MPL"
APACHE = "APACHE"