Skip to content
Snippets Groups Projects
Verified Commit 90dbe9fe authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Update copyright information and add new app config meta data

parent 766c2fc3
No related branches found
No related tags found
No related merge requests found
......@@ -16,11 +16,12 @@ Licence
::
Copyright © 2019, 2020 Julian Leucker <leuckeju@katharineum.de>
Copyright © 2019, 2020 Hangzhi Yu <yuha@katharineum.de>
Copyright © 2019 Silas Della Contrada <s.developer@4-dc.de>
Copyright © 2019 Julian Leucker <leuckeju@katharineum.de>
Copyright © 2019 Frank Poetzsch-Heffter <p-h@katharineum.de>
Copyright © 2019 Jonathan Weth <wethjo@katharineum.de>
Copyright © 2019 Hangzhi Yu <yuha@katharineum.de>
Copyright © 2020 Tom Teichler <tom.teichler@teckids.org>
Licenced under the EUPL, version 1.2 or later
......
# NOTE: this is currently empty, but contains, in subdirectories,
# two separate Django apps that should be merged into one, those
# subdirectories faq and support will then be deleted.
import pkg_resources
try:
__version__ = pkg_resources.get_distribution("AlekSIS-App-Hjelp").version
except Exception:
__version__ = "unknown"
default_app_config = "aleksis.apps.hjelp.apps.HjelpConfig"
from django.apps import AppConfig
from aleksis.core.util.apps import AppConfig
class HjelpConfig(AppConfig):
name = 'hjelp'
verbose_name = "AlekSIS-App-Hjelp"
name = 'aleksis.apps.hjelp'
verbose_name = "AlekSIS — Hjelp (Support)"
urls = {
"Repository": "https://edugit.org/AlekSIS/official/AlekSIS-App-Hjelp/",
}
licence = "EUPL-1.2+"
copyright = (
([2019, 2020], "Julian Leucker", "leuckeju@katharineum.de"),
([2019, 2020], "Hangzhi Yu", "yuha@katharineum.de"),
([2019], "Silas Della Contrada", "s.developer@4-dc.de"),
([2019], "Frank Poetzsch-Heffter", "p-h@katharineum.de"),
([2019], "Jonathan Weth", "wethjo@katharineum.de"),
([2020], "Tom Teichler", "tom.teichler@teckids.org"),
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment