Skip to content
Merged
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Tested on Python 3.4, 3.5, 3.6, 3.7, Pypy3

DeepDiff prefers to use Murmur3 for hashing. However you have to manually install Murmur3 by running:

`pip install mmh3`
`pip install 'deepdiff[murmur]'`

Otherwise DeepDiff will be using SHA256 for hashing which is a cryptographic hash and is considerably slower.

Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ def get_reqs(filename):
long_description_content_type='text/markdown',
install_requires=reqs,
python_requires='>=3.4',
extras_require={
"murmur": ["mmh3"],
},
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
Expand Down