summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjaseg <git@jaseg.de>2023-02-26 13:07:23 +0100
committerjaseg <git@jaseg.de>2023-02-26 13:07:54 +0100
commit6625a3900da1bd15fa554b77f87d3f75b43bc7e0 (patch)
treea38d14a710eab207bdb04b473bd2ba16ddbf6b55
parent2f117e0ec78a7497278e0f2521d03fa88e961a00 (diff)
downloadpython-mpv-6625a3900da1bd15fa554b77f87d3f75b43bc7e0.tar.gz
python-mpv-6625a3900da1bd15fa554b77f87d3f75b43bc7e0.tar.bz2
python-mpv-6625a3900da1bd15fa554b77f87d3f75b43bc7e0.zip
Update license header with dual-license information
Closes #206
-rw-r--r--mpv.py16
1 files changed, 9 insertions, 7 deletions
diff --git a/mpv.py b/mpv.py
index f1e4fa3..97c73da 100644
--- a/mpv.py
+++ b/mpv.py
@@ -4,16 +4,18 @@
# Python MPV library module
# Copyright (C) 2017-2022 Sebastian Götte <code@jaseg.net>
#
-# This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public
-# License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later
-# version.
+# python-mpv inherits the underlying libmpv's license, which can be either GPLv2 or later (default) or LGPLv2.1 or
+# later. For details, see the mpv copyright page here: https://github.com/mpv-player/mpv/blob/master/Copyright
#
-# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
-# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+# You may copy, modify, and redistribute this file under the terms of the GNU General Public License version 2 (or, at
+# your option, any later version), or the GNU Lesser General Public License as published by the Free Software
+# Foundation; either version 2.1 of the License, or (at your option) any later version.
#
-# You should have received a copy of the GNU General Public License along with this program; if not, write to the Free
-# Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+# This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License and the GNU
+# Lesser General Public License for more details.
#
+# You can find copies of the GPLv2 and LGPLv2.1 licenses in the project repository's LICENSE.GPL and LICENSE.LGPL files.
from ctypes import *
import ctypes.util