Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyjd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os

from setuptools import setup


Expand All @@ -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"],
Expand All @@ -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)",
],
)