From d3f652bd6d5121c0310a8205184cb89c417514dd Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Sat, 4 Aug 2018 02:33:03 +0200 Subject: [PATCH] dolweb: make licensing situation more explicit --- LICENSE | 21 +++++++++++++++++++ dolweb/blog/admin.py | 3 +++ dolweb/blog/feeds.py | 3 +++ dolweb/blog/models.py | 3 +++ dolweb/blog/templatetags/blog_tags.py | 3 +++ dolweb/blog/urls.py | 3 +++ dolweb/blog/views.py | 3 +++ dolweb/compat/admin.py | 3 +++ dolweb/compat/management/commands/genatlas.py | 3 +++ dolweb/compat/models.py | 3 +++ dolweb/compat/templatetags/compat.py | 3 +++ dolweb/compat/urls.py | 3 +++ dolweb/compat/views.py | 3 +++ dolweb/docs/admin.py | 3 +++ .../docs/management/commands/dyni18n_faq.py | 3 +++ dolweb/docs/models.py | 3 +++ dolweb/docs/templatetags/docs.py | 3 +++ dolweb/docs/urls.py | 3 +++ dolweb/docs/views.py | 3 +++ dolweb/downloads/admin.py | 3 +++ dolweb/downloads/diggpaginator.py | 3 +++ dolweb/downloads/models.py | 3 +++ dolweb/downloads/templatetags/artifacts.py | 3 +++ dolweb/downloads/urls.py | 3 +++ dolweb/downloads/views.py | 3 +++ dolweb/homepage/admin.py | 3 +++ dolweb/homepage/apps.py | 3 +++ dolweb/homepage/models.py | 3 +++ dolweb/homepage/templatetags/language.py | 3 +++ dolweb/homepage/views.py | 3 +++ dolweb/management/views.py | 3 +++ dolweb/media/admin.py | 3 +++ dolweb/media/models.py | 3 +++ dolweb/media/tests.py | 3 +++ dolweb/media/urls.py | 3 +++ dolweb/media/views.py | 3 +++ dolweb/settings.py | 3 +++ dolweb/update/admin.py | 3 +++ dolweb/update/models.py | 3 +++ dolweb/update/urls.py | 3 +++ dolweb/update/views.py | 3 +++ dolweb/urls.py | 3 +++ dolweb/utils/context_processors.py | 3 +++ dolweb/utils/country_redirect.py | 3 +++ dolweb/utils/db.py | 3 +++ dolweb/utils/dyni18n.py | 3 +++ dolweb/utils/models_utils.py | 3 +++ dolweb/utils/monkey.py | 3 +++ dolweb/wsgi.py | 3 +++ fabfile.py | 3 +++ manage.py | 3 +++ 51 files changed, 171 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..11a9096 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 Dolphin Emulator Website Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/dolweb/blog/admin.py b/dolweb/blog/admin.py index 3d2e0b2..8c091b6 100644 --- a/dolweb/blog/admin.py +++ b/dolweb/blog/admin.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.conf import settings from django.contrib import admin from django.forms import Widget diff --git a/dolweb/blog/feeds.py b/dolweb/blog/feeds.py index fe49344..9db2f92 100644 --- a/dolweb/blog/feeds.py +++ b/dolweb/blog/feeds.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.conf import settings from django.http import Http404 from django.shortcuts import get_object_or_404 diff --git a/dolweb/blog/models.py b/dolweb/blog/models.py index ada9011..7197d9e 100644 --- a/dolweb/blog/models.py +++ b/dolweb/blog/models.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.conf import settings from django.db import models from django.utils.html import linebreaks diff --git a/dolweb/blog/templatetags/blog_tags.py b/dolweb/blog/templatetags/blog_tags.py index 7df917a..1dd8ed4 100644 --- a/dolweb/blog/templatetags/blog_tags.py +++ b/dolweb/blog/templatetags/blog_tags.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.template import Library register = Library() diff --git a/dolweb/blog/urls.py b/dolweb/blog/urls.py index aec81cf..6dc8d94 100644 --- a/dolweb/blog/urls.py +++ b/dolweb/blog/urls.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.conf import settings from django.conf.urls import url, include from dolweb.blog.feeds import SeriesFeed diff --git a/dolweb/blog/views.py b/dolweb/blog/views.py index 775f907..e5de84a 100644 --- a/dolweb/blog/views.py +++ b/dolweb/blog/views.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from annoying.decorators import render_to from django.conf import settings from django.core.paginator import Paginator, EmptyPage diff --git a/dolweb/compat/admin.py b/dolweb/compat/admin.py index 35b6dc3..fe13d60 100644 --- a/dolweb/compat/admin.py +++ b/dolweb/compat/admin.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.contrib import admin from dolweb.compat.models import Page diff --git a/dolweb/compat/management/commands/genatlas.py b/dolweb/compat/management/commands/genatlas.py index 84f3faf..37a34ed 100644 --- a/dolweb/compat/management/commands/genatlas.py +++ b/dolweb/compat/management/commands/genatlas.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.conf import settings from django.core.management.base import BaseCommand, CommandError from dolweb.compat.models import Page diff --git a/dolweb/compat/models.py b/dolweb/compat/models.py index e95efbd..b6f257e 100644 --- a/dolweb/compat/models.py +++ b/dolweb/compat/models.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from datetime import datetime from django.conf import settings from django.core.cache import cache diff --git a/dolweb/compat/templatetags/compat.py b/dolweb/compat/templatetags/compat.py index 9247756..0a1d226 100644 --- a/dolweb/compat/templatetags/compat.py +++ b/dolweb/compat/templatetags/compat.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django import template from django.conf import settings from django.contrib.staticfiles.storage import staticfiles_storage diff --git a/dolweb/compat/urls.py b/dolweb/compat/urls.py index 8ec03b9..9c46c96 100644 --- a/dolweb/compat/urls.py +++ b/dolweb/compat/urls.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.conf.urls import url from dolweb.compat.views import list_compat diff --git a/dolweb/compat/views.py b/dolweb/compat/views.py index 3c30cc3..eb992aa 100644 --- a/dolweb/compat/views.py +++ b/dolweb/compat/views.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from annoying.decorators import render_to from django.views.decorators.cache import cache_page from dolweb.compat.models import Page, Namespace, get_category_id, \ diff --git a/dolweb/docs/admin.py b/dolweb/docs/admin.py index 449c41a..8340221 100644 --- a/dolweb/docs/admin.py +++ b/dolweb/docs/admin.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.contrib import admin from dolweb.docs.models import FAQCategory, FAQ, Guide diff --git a/dolweb/docs/management/commands/dyni18n_faq.py b/dolweb/docs/management/commands/dyni18n_faq.py index c9c5317..5875fa5 100644 --- a/dolweb/docs/management/commands/dyni18n_faq.py +++ b/dolweb/docs/management/commands/dyni18n_faq.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.conf import settings from django.core.management.base import BaseCommand diff --git a/dolweb/docs/models.py b/dolweb/docs/models.py index d261610..bef1afa 100644 --- a/dolweb/docs/models.py +++ b/dolweb/docs/models.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.db import models from django.urls import reverse diff --git a/dolweb/docs/templatetags/docs.py b/dolweb/docs/templatetags/docs.py index e2e7080..332d7f2 100644 --- a/dolweb/docs/templatetags/docs.py +++ b/dolweb/docs/templatetags/docs.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + import markdown from django import template diff --git a/dolweb/docs/urls.py b/dolweb/docs/urls.py index 4e367e9..1fca674 100644 --- a/dolweb/docs/urls.py +++ b/dolweb/docs/urls.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.conf.urls import url from dolweb.docs.views import faq, faq_dyni18n_po, guides_index, guide diff --git a/dolweb/docs/views.py b/dolweb/docs/views.py index a7bd1ad..56f4172 100644 --- a/dolweb/docs/views.py +++ b/dolweb/docs/views.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from annoying.decorators import render_to from django.http import HttpResponse from django.shortcuts import get_object_or_404 diff --git a/dolweb/downloads/admin.py b/dolweb/downloads/admin.py index 46c8024..ef6e4b1 100644 --- a/dolweb/downloads/admin.py +++ b/dolweb/downloads/admin.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.contrib import admin from dolweb.downloads.models import Artifact, BranchInfo, ReleaseVersion, DevVersion diff --git a/dolweb/downloads/diggpaginator.py b/dolweb/downloads/diggpaginator.py index 0bdf286..32ae221 100644 --- a/dolweb/downloads/diggpaginator.py +++ b/dolweb/downloads/diggpaginator.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + import functools import math from django.core.paginator import \ diff --git a/dolweb/downloads/models.py b/dolweb/downloads/models.py index fa4cd7d..5de1e06 100644 --- a/dolweb/downloads/models.py +++ b/dolweb/downloads/models.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.conf import settings from django.db import models from django.utils.safestring import mark_safe diff --git a/dolweb/downloads/templatetags/artifacts.py b/dolweb/downloads/templatetags/artifacts.py index ca32df4..6615162 100644 --- a/dolweb/downloads/templatetags/artifacts.py +++ b/dolweb/downloads/templatetags/artifacts.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django import template register = template.Library() diff --git a/dolweb/downloads/urls.py b/dolweb/downloads/urls.py index eea228e..45fa413 100644 --- a/dolweb/downloads/urls.py +++ b/dolweb/downloads/urls.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.conf.urls import url from dolweb.downloads import views diff --git a/dolweb/downloads/views.py b/dolweb/downloads/views.py index a2aae1b..ec70ec4 100644 --- a/dolweb/downloads/views.py +++ b/dolweb/downloads/views.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from annoying.decorators import render_to from django.conf import settings from django.core.paginator import EmptyPage diff --git a/dolweb/homepage/admin.py b/dolweb/homepage/admin.py index 935494c..1cd5578 100644 --- a/dolweb/homepage/admin.py +++ b/dolweb/homepage/admin.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.contrib import admin from dolweb.homepage.models import NewsArticle diff --git a/dolweb/homepage/apps.py b/dolweb/homepage/apps.py index fc2f7a3..8b1c62b 100644 --- a/dolweb/homepage/apps.py +++ b/dolweb/homepage/apps.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.apps import AppConfig class HomepageConfig(AppConfig): diff --git a/dolweb/homepage/models.py b/dolweb/homepage/models.py index cb5f2b8..55cebef 100644 --- a/dolweb/homepage/models.py +++ b/dolweb/homepage/models.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.conf import settings from django.db import models diff --git a/dolweb/homepage/templatetags/language.py b/dolweb/homepage/templatetags/language.py index 7043104..d461ac2 100644 --- a/dolweb/homepage/templatetags/language.py +++ b/dolweb/homepage/templatetags/language.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django import template from django.conf import settings from dolweb.utils.monkey import TO_FULL diff --git a/dolweb/homepage/views.py b/dolweb/homepage/views.py index 7c1660b..afc193e 100644 --- a/dolweb/homepage/views.py +++ b/dolweb/homepage/views.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from annoying.decorators import render_to from django.conf import settings from dolweb.downloads.models import DevVersion, ReleaseVersion diff --git a/dolweb/management/views.py b/dolweb/management/views.py index a900994..413a978 100644 --- a/dolweb/management/views.py +++ b/dolweb/management/views.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.conf import settings from django.http import Http404, HttpResponse diff --git a/dolweb/media/admin.py b/dolweb/media/admin.py index de2b230..338d66c 100644 --- a/dolweb/media/admin.py +++ b/dolweb/media/admin.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.contrib import admin from dolweb.media.models import Screenshot diff --git a/dolweb/media/models.py b/dolweb/media/models.py index c21faf9..911166c 100644 --- a/dolweb/media/models.py +++ b/dolweb/media/models.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.db import models from sorl import thumbnail diff --git a/dolweb/media/tests.py b/dolweb/media/tests.py index 501deb7..6c511fb 100644 --- a/dolweb/media/tests.py +++ b/dolweb/media/tests.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + """ This file demonstrates writing tests using the unittest module. These will pass when you run "manage.py test". diff --git a/dolweb/media/urls.py b/dolweb/media/urls.py index 93529e9..973b6eb 100644 --- a/dolweb/media/urls.py +++ b/dolweb/media/urls.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.conf.urls import url from dolweb.media import views diff --git a/dolweb/media/views.py b/dolweb/media/views.py index a4907af..fbb0551 100644 --- a/dolweb/media/views.py +++ b/dolweb/media/views.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from annoying.decorators import render_to from django.views.decorators.cache import cache_page from dolweb.media.models import Screenshot diff --git a/dolweb/settings.py b/dolweb/settings.py index be0fa51..5f301f3 100644 --- a/dolweb/settings.py +++ b/dolweb/settings.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + # Django settings for dolweb project. # -*- encoding: utf-8 -*- diff --git a/dolweb/update/admin.py b/dolweb/update/admin.py index 6058408..f54bbf6 100644 --- a/dolweb/update/admin.py +++ b/dolweb/update/admin.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.contrib import admin from dolweb.update.models import UpdateTrack diff --git a/dolweb/update/models.py b/dolweb/update/models.py index 8a0fe3b..40af223 100644 --- a/dolweb/update/models.py +++ b/dolweb/update/models.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.db import models from dolweb.downloads.models import DevVersion diff --git a/dolweb/update/urls.py b/dolweb/update/urls.py index 8dedbb2..90827b1 100644 --- a/dolweb/update/urls.py +++ b/dolweb/update/urls.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.conf.urls import url from dolweb.update import views diff --git a/dolweb/update/views.py b/dolweb/update/views.py index d041019..113c523 100644 --- a/dolweb/update/views.py +++ b/dolweb/update/views.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.conf import settings from django.http import HttpResponseBadRequest, HttpResponseNotFound, JsonResponse from dolweb.downloads.models import DevVersion diff --git a/dolweb/urls.py b/dolweb/urls.py index afa4a48..313dbb4 100644 --- a/dolweb/urls.py +++ b/dolweb/urls.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.conf import settings from django.conf.urls import include, url from django.conf.urls.static import static diff --git a/dolweb/utils/context_processors.py b/dolweb/utils/context_processors.py index 289e3f0..0efa947 100644 --- a/dolweb/utils/context_processors.py +++ b/dolweb/utils/context_processors.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.conf import settings def website_urls(request): diff --git a/dolweb/utils/country_redirect.py b/dolweb/utils/country_redirect.py index f034932..159b879 100644 --- a/dolweb/utils/country_redirect.py +++ b/dolweb/utils/country_redirect.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.conf import settings from django.http import HttpResponseRedirect from django.utils.translation.trans_real import parse_accept_lang_header diff --git a/dolweb/utils/db.py b/dolweb/utils/db.py index 71ace78..74555da 100644 --- a/dolweb/utils/db.py +++ b/dolweb/utils/db.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.conf import settings class WikiRouter(object): diff --git a/dolweb/utils/dyni18n.py b/dolweb/utils/dyni18n.py index 61e5c72..cc2d5c4 100644 --- a/dolweb/utils/dyni18n.py +++ b/dolweb/utils/dyni18n.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.conf import settings from django.utils.translation import get_language diff --git a/dolweb/utils/models_utils.py b/dolweb/utils/models_utils.py index 914bd3f..b83de24 100644 --- a/dolweb/utils/models_utils.py +++ b/dolweb/utils/models_utils.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.db import models class DefaultSelectOrPrefetchManager(models.Manager): diff --git a/dolweb/utils/monkey.py b/dolweb/utils/monkey.py index 6d62d84..bcdfe4b 100644 --- a/dolweb/utils/monkey.py +++ b/dolweb/utils/monkey.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from django.utils.translation.trans_real import * from django.utils.translation import trans_real diff --git a/dolweb/wsgi.py b/dolweb/wsgi.py index 070868b..1cc5d04 100644 --- a/dolweb/wsgi.py +++ b/dolweb/wsgi.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + """ WSGI config for dolweb project. diff --git a/fabfile.py b/fabfile.py index 8708163..d477e81 100644 --- a/fabfile.py +++ b/fabfile.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + from fabric.api import * env.user = 'dolphin-emu' diff --git a/manage.py b/manage.py index 4040ca9..91919fc 100755 --- a/manage.py +++ b/manage.py @@ -1,3 +1,6 @@ +# Copyright (c) 2018 Dolphin Emulator Website Contributors +# SPDX-License-Identifier: MIT + #!/usr/bin/env python import os import sys