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
2 changes: 1 addition & 1 deletion fuzzy_extractor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from math import log
from os import urandom
from struct import pack, unpack
from fastpbkdf2 import pbkdf2_hmac
from hashlib import pbkdf2_hmac
import numpy as np

class FuzzyExtractor(object):
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
fastpbkdf2>=0.2
numpy>=1.12.1
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def extract_metaitem(meta):
download_url=extract_metaitem('download_url'),
packages=find_packages(exclude=('tests', 'docs')),
platforms=['Any'],
install_requires=['fastpbkdf2', 'numpy'],
install_requires=['numpy'],
tests_require=['pytest'],
keywords='fuzzy extractor security',
classifiers=[
Expand All @@ -71,5 +71,7 @@ def extract_metaitem(meta):
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)