setup.py 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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.01",
  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="Daniel Richard Stromberg",
  18. author_email="strombrg@gmail.com",
  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. """,
  29. license="MIT",
  30. keywords="probabilistic set datastructure",
  31. url='http://stromberg.dnsalias.org/~strombrg/drs-bloom-filter/',
  32. platforms='Cross platform',
  33. classifiers=[
  34. "Development Status :: 5 - Production/Stable",
  35. "Intended Audience :: Developers",
  36. "Programming Language :: Python :: 2",
  37. "Programming Language :: Python :: 3",
  38. ],
  39. )