setup.py 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. from setuptools import setup, find_packages
  2. setup(
  3. name = "drs-bloom-filter",
  4. version = "1.0",
  5. packages = find_packages(),
  6. scripts = ['bloom_filter_mod.py', 'python2x3.py' ],
  7. # metadata for upload to PyPI
  8. author = "Daniel Richard Stromberg",
  9. author_email = "strombrg@gmail.com",
  10. description='Pure Python Bloom Filter module',
  11. long_description='''
  12. A pure python bloom filter (low storage requirement, probabilistic
  13. set datastructure) is provided. It is known to work on CPython 2.x,
  14. CPython 3.x, Pypy and Jython.
  15. Includes mmap, in-memory and disk-seek backends.
  16. The user specifies the desired maximum number of elements and the
  17. desired maximum false positive probability, and the module
  18. calculates the rest.
  19. ''',
  20. license = "MIT",
  21. keywords = "probabilistic set datastructure",
  22. url='http://stromberg.dnsalias.org/~strombrg/drs-bloom-filter/',
  23. platforms='Cross platform',
  24. classifiers=[
  25. "Development Status :: 5 - Production/Stable",
  26. "Intended Audience :: Developers",
  27. "Programming Language :: Python :: 2",
  28. "Programming Language :: Python :: 3",
  29. ],
  30. )