Skip to content
Merged
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
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,11 @@

DESCRIPTION = __doc__
LONG_DESCRIPTION = open('README.rst').read() + open('CHANGES.rst').read()
LICENSE = 'LGPLv2+'

CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Programming Language :: Cython',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
Expand Down Expand Up @@ -47,9 +45,10 @@
version="0.8.3",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/x-rst",
author='Mikhail Korobov',
author_email='kmike84@gmail.com',
license=LICENSE,
license="LGPL-2.1-or-later",
Copy link
Contributor Author

@matthewfeickert matthewfeickert Oct 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Given

datrie/COPYING

Lines 1 to 2 in c9525da

GNU LESSER GENERAL PUBLIC LICENSE
Version 2.1, February 1999

and the existing

'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',

the SPDX identifier should be for v2.1+.

url='https://github.com/kmike/datrie',
classifiers=CLASSIFIERS,
libraries=[('datrie', {
Expand Down