D | add3prf.py | 143 return License(LicenseType.APACHE2, LicenseGroup.NOTICE, license_file) 145 return License(LicenseType.BOOST, LicenseGroup.NOTICE, license_file) 147 return License(LicenseType.MIT, LicenseGroup.NOTICE, license_file) 149 return License(LicenseType.BSD_LIKE, LicenseGroup.NOTICE, license_file) 157 return License(LicenseType.ZLIB, LicenseGroup.NOTICE, license_file) 160 return License(LicenseType.BSD_LIKE, LicenseGroup.NOTICE, license_file) 189 NOTICE = 4 variable in LicenseGroup 209 licenses.append(License(LicenseType.APACHE2, LicenseGroup.NOTICE, license_file)) 211 licenses.append(License(LicenseType.BOOST, LicenseGroup.NOTICE, license_file)) 213 licenses.append(License(LicenseType.BSD_LIKE, LicenseGroup.NOTICE, license_file)) [all …]
|