Skip to content

Commit

Permalink
Proper SPDX license abbreviation
Browse files Browse the repository at this point in the history
crc32c is licensed under LGPL v2.1 or later, so the SPDX identifier should be
LGPLv2.1+. The python trove classifiers don't include an item for that specific
minor version of the license, so in that case we keep using LGPLv2+.

Signed-off-by: Rodrigo Tobar <[email protected]>
  • Loading branch information
rtobar committed Jun 14, 2017
1 parent 5874dbb commit da4ddf6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
include_dirs=['.'])

classifiers = [
# There's no more specific classifier for LGPLv2.1+
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Operating System :: OS Independent",
"Programming Language :: C",
Expand All @@ -45,8 +46,8 @@
author='The ICRAR DIA Team',
url='https://github.com/ICRAR/crc32c',
author_email='[email protected]',
version='1.0',
license="LGPLv2+",
version='1.1',
license="LGPLv2.1+",
description='A python package exposing the Intel SSE4.2 CRC32C instruction',
classifiers=classifiers,
ext_modules=[crcmod_ext])

0 comments on commit da4ddf6

Please sign in to comment.