moolb

Bloom filter for python3 with pluggable hasher backend
git clone git://git.defalsify.org/python-moolb.git
Log | Files | Refs | README | LICENSE

commit 1815612e6b66a79e6fb97edc153cc975e03f25d0
parent 96506342b5b59e44e2d3fb1aa1e5c8cf3956a29c
Author: nolash <dev@holbrook.no>
Date:   Sun, 31 Oct 2021 06:52:35 +0100

License change GPL -> WTFPL

Diffstat:
ALICENSE | 14++++++++++++++
Mmoolb/moolb.py | 3+--
Msetup.cfg | 2+-
Msetup.py | 4++--
4 files changed, 18 insertions(+), 5 deletions(-)

diff --git a/LICENSE b/LICENSE @@ -0,0 +1,14 @@ + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2004 Sam Hocevar <sam@hocevar.net> + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. + diff --git a/moolb/moolb.py b/moolb/moolb.py @@ -2,8 +2,7 @@ import hashlib import logging import math -logging.basicConfig(level=logging.DEBUG) -logg = logging.getLogger() +logg = logging.getLogger(__name__) # m = ceil((n * log(p)) / log(1 / pow(2, log(2)))); diff --git a/setup.cfg b/setup.cfg @@ -7,4 +7,4 @@ classifiers = Topic :: Software Development :: Libraries License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+) license_files = - LICENSE.txt + LICENSE diff --git a/setup.py b/setup.py @@ -6,11 +6,11 @@ f.close() setup( name='moolb', - version='0.1.1b2', + version='0.2.0'. description='Simple bloom filter with pluggable hash backend', author='Louis Holbrook', author_email='dev@holbrook.no', - license='GPL3', + license='WTFPL', long_description=long_description, long_description_content_type='text/markdown', packages=[