forked from michael-the1/python-cuckoo
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
30 lines (28 loc) · 836 Bytes
/
setup.py
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
28
29
30
import os
from setuptools import setup, find_packages
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
setup(
name='python-cuckoo',
description="Cuckoo Filter implemenation for Python 3.x",
keywords='cuckoofilter bloomfilter',
version="1.1.1",
license='MIT',
packages=find_packages(),
install_requires=[
'mmh3',
],
tests_require=[
'pytest',
'pytest-cov',
],
author='Maxime Beauchemin',
author_email='[email protected]',
maintainer='Leechael Yim',
maintainer_email='[email protected]',
url='https://github.com/Leechael/python-cuckoo',
download_url='https://github.com/Leechael/python-cuckoo/tarball/1.1.1',
classifiers=[
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)