diff --git a/pyjd/__init__.py b/pyjd/__init__.py index 5b6cc34..852c813 100644 --- a/pyjd/__init__.py +++ b/pyjd/__init__.py @@ -5,11 +5,11 @@ *pyjd* is a Python wrapper for the JDownloader API. :copyright: (c) 2022 Philipp Glaum -:license: GPLv2, see LICENSE for more details +:license: LGPLv3, see LICENSE for more details """ __title__ = "pyjd" __version__ = "2.0-alpha" __author__ = "Philipp Glaum" __copyright__ = "Copyright (c) 2022 Philipp Glaum" -__license__ = "GPLv2" +__license__ = "LGPLv3" diff --git a/setup.py b/setup.py index 8444fac..871c40b 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,5 @@ import os + from setuptools import setup @@ -16,7 +17,8 @@ def read(fname): author="Philipp Glaum", author_email="p@pglaum.de", description=("A wrapper for the JDownloader API"), - license="GPLv3", + license="LGPLv3", + license_files=("LICENSE",), keywords="api jdownloader", url="https://git.sr.ht/~pglaum/pyjd-api", packages=["pyjd"], @@ -26,6 +28,6 @@ def read(fname): classifiers=[ "Programming Language :: Python :: 3", "Operating System :: OS Independent", - "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", + "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", ], )