setup.py 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #!/usr/bin/env python
  2. # -*- encoding: utf-8 -*-
  3. from __future__ import absolute_import
  4. from __future__ import print_function
  5. from glob import glob
  6. from os.path import basename
  7. from os.path import splitext
  8. from setuptools import find_packages
  9. from setuptools import setup
  10. setup(
  11. name="bloom_filter",
  12. version="1.3",
  13. packages=find_packages('src'),
  14. package_dir={'': 'src'},
  15. py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
  16. # metadata for upload to PyPI
  17. author="Harshad Sharma",
  18. author_email="harshad@sharma.io",
  19. description='Pure Python Bloom Filter module',
  20. long_description="""
  21. A pure python bloom filter (low storage requirement, probabilistic
  22. set datastructure) is provided. It is known to work on CPython 2.x,
  23. CPython 3.x, Pypy and Jython.
  24. Includes mmap, in-memory and disk-seek backends.
  25. The user specifies the desired maximum number of elements and the
  26. desired maximum false positive probability, and the module
  27. calculates the rest.
  28. Usage:
  29. ::
  30. from bloom_filter import BloomFilter
  31. # instantiate BloomFilter with custom settings,
  32. # max_elements is how many elements you expect the filter to hold.
  33. # error_rate defines accuracy; You can use defaults with
  34. # `BloomFilter()` without any arguments. Following example
  35. # is same as defaults:
  36. bloom = BloomFilter(max_elements=10000, error_rate=0.1)
  37. # Test whether the bloom-filter has seen a key:
  38. assert "test-key" in bloom is False
  39. # Mark the key as seen
  40. bloom.add("test-key")
  41. # Now check again
  42. assert "test-key" in bloom is True
  43. """,
  44. license="MIT",
  45. keywords="probabilistic set datastructure",
  46. url='https://github.com/hiway/python-bloom-filter',
  47. platforms='Cross platform',
  48. classifiers=[
  49. "Development Status :: 5 - Production/Stable",
  50. "Intended Audience :: Developers",
  51. "Programming Language :: Python :: 2",
  52. "Programming Language :: Python :: 3",
  53. ],
  54. )