Skip to content

Commit

Permalink
Change project name and owner
Browse files Browse the repository at this point in the history
  • Loading branch information
reubano committed Dec 31, 2016
1 parent 6c9260d commit 32c6228
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) sangelone
Copyright (c) Reuben Cummings

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#python-hashes
# changanya

Interesting (non-cryptographic) hashes implemented in pure Python. Included so far:

* Bloom filters
* Charikar similarity hashes
* Simhash (Charikar similarity hashes)
* Nilsimsa signatures
* geohashes

Expand Down
2 changes: 1 addition & 1 deletion hashes/bloom.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
160-bit hash function. Also keep in mind that it starts off very sparse and
become more dense (and false-positive-prone) as you add more elements.
Part of python-hashes by sangelone. See README and LICENSE.
Part of changanya by reubano. See README and LICENSE.
"""

import math
Expand Down
2 changes: 1 addition & 1 deletion hashes/geohash.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
present similar prefixes. On the other side, the longer a shared
prefix is, the closer the two places are.
Part of python-hashes by sangelone. See README and LICENSE.
Part of changanya by reubano. See README and LICENSE.
Based on code by Hiroaki Kawai <kawai@iij.ad.jp> and geohash.org
"""

Expand Down
2 changes: 1 addition & 1 deletion hashes/hashtype.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""
Base class from which hash types can be created.
Part of python-hashes by sangelone. See README and LICENSE.
Part of changanya by reubano. See README and LICENSE.
"""
from functools import total_ordering

Expand Down
2 changes: 1 addition & 1 deletion hashes/nilsimsa.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Related paper: http://spdp.dti.unimi.it/papers/pdcs04.pdf
Part of python-hashes by sangelone. See README and LICENSE.
Part of changanya by reubano. See README and LICENSE.
"""

from .hashtype import Hashtype
Expand Down
2 changes: 1 addition & 1 deletion hashes/simhash.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Most useful for creating 'fingerprints' of documents or metadata
so you can quickly find duplicates or cluster items.
Part of python-hashes by sangelone. See README and LICENSE.
Part of changanya by reubano. See README and LICENSE.
"""
import itertools as it

Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

from setuptools import setup, find_packages

setup(name='python-hashes',
setup(name='changanya',
version='0.2.0',
description='Library of interesting (non-cryptographic) hashes in pure Python.',
author='sangelone',
author_email='angelone@gmail.com',
url='http://github.com/sangelone/python-hashes',
download_url='http://github.com/sangelone/python-hashes/downloads',
author='reubano',
author_email='reubano@gmail.com',
url='http://github.com/reubano/changanya',
download_url='http://github.com/reubano/changanya/downloads',
packages=find_packages(),
)

0 comments on commit 32c6228

Please sign in to comment.