-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 1.08 KB
/
setup.py
File metadata and controls
27 lines (26 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup, find_packages
setup(
name="filtercascade",
version="0.4.1",
description="A simple bloom filter cascade implementation in Python",
long_description="A bloom filter cascade implementation in Python using either the 32-bit variant of murmurhash3 or sha256.",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3",
],
keywords="bloom filter cascade multi level mlbf",
url="https://github.com/mozilla/filter-cascade",
project_urls={
"Rust Project": "https://github.com/mozilla/rust-cascade",
"Source": "https://github.com/mozilla/filter-cascade",
"Tracker": "https://github.com/mozilla/filter-cascade/issues",
},
author="J.C. Jones",
author_email="jc@mozilla.com",
license="Mozilla Public License 2.0 (MPL 2.0)",
packages=["filtercascade"],
install_requires=["bitarray>=0.9.2", "mmh3>=2.5.1", "Deprecated"],
include_package_data=True,
zip_safe=False,
)