Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.

Commit

Permalink
Merge pull request #16 from holbech/setup-py-fix
Browse files Browse the repository at this point in the history
setup.py change for pip-interoperability
  • Loading branch information
jaybaird committed Aug 22, 2014
2 parents 30cf351 + 89a9ab5 commit 2bbe01a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions pybloom/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
"""pybloom
"""

from .pybloom import BloomFilter, ScalableBloomFilter

3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,6 @@
platforms=['any'],
test_suite="pybloom.tests",
zip_safe=True,
install_requires=['bitarray>=0.3.4']
install_requires=['bitarray>=0.3.4'],
packages=['pybloom']
)

0 comments on commit 2bbe01a

Please sign in to comment.