consistent-hash
consistent-hash copied to clipboard
BSD or GPL?
The packaging metadata says BSD
setup(
name='consistent_hash',
version='0.3',
author="Yummy Bian",
author_email="[email protected]",
url="https://github.com/yummybian",
packages=['consistent_hash'],
platforms=["Any"],
license="BSD",
keywords='consistent hash hashing',
description="Implements consistent hashing with Python.",
)
Yet the implementation file is tagged as GPLv3
# Copyright (c) 2012 Yummy Bian <yummy.bian#gmail.com>.
#
# This module 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 3 of the License, or (at
# your option) any later version.
IANAL, but I believe that this needs to be interpreted as GPLv3.