Add SPDX ID LGPL v3+ license headers

This commit is contained in:
miruka
2019-12-19 07:46:16 -04:00
parent d3ee39bf7b
commit fb1f9c62e5
142 changed files with 284 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
"""This package provides a Python backend accessible from the QML UI side."""
__app_name__ = "harmonyqml"

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
import asyncio
import logging as log
import sys

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
"""Custom exception definitions."""
from dataclasses import dataclass, field

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
"""HTML and Markdown processing tools."""
import re

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
"""Matrix client and related classes."""
import asyncio

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
"""Matrix media downloading, caching and retrieval."""
import asyncio

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
"""Provide classes related to data models shared between Python and QML."""
from typing import Tuple, Type, Union

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
"""`ModelItem` subclasses definitions."""
import asyncio

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
import logging as log
import time
from threading import Lock, Thread

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
from typing import Any, Dict, Optional
from ..utils import serialize_value_for_qml

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
from collections import UserDict
from dataclasses import dataclass, field
from typing import Dict

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
import asyncio
import json
import logging as log

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
from dataclasses import dataclass, field
from typing import Any, Dict, List, Optional, Union

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
"""Install `uvloop` if possible and provide a `QMLBridge`."""
import asyncio

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
"""QPL (Qt Property Language) theme files to QML converter.
QPL is a custom configuration format currently used for theme files.

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
"""User data and configuration files definitions."""
import asyncio

View File

@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
"""Various utilities that are used throughout the package."""
import collections