Make it clearer where licenses are coming from

This commit is contained in:
Pradyun Gedam 2019-11-10 15:39:49 +05:30
parent 419ddf4d7c
commit d8d948de64
No known key found for this signature in database
GPG Key ID: DA17C4B29CB32E4B
1 changed files with 3 additions and 3 deletions

View File

@ -27,10 +27,10 @@ LIBRARY_DIRNAMES = {
}
# from time to time, remove the no longer needed ones
_github_license = "https://github.com/{}/raw/master/LICENSE"
HARDCODED_LICENSE_URLS = {
'pytoml': 'https://github.com/avakar/pytoml/raw/master/LICENSE',
'webencodings': 'https://github.com/SimonSapin/python-webencodings/raw/'
'master/LICENSE',
'pytoml': _github_license.format('avakar/pytoml'),
'webencodings': _github_license.format('SimonSapin/python-webencodings')
}