-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (27 loc) · 1.05 KB
/
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
31
32
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def readme(file_name):
if os.path.isfile(file_name):
with open(file_name, 'r', encoding='UTF-8') as f:
return f.read()
setup(name='simplebloomfilter',
version='1.0.0',
description='A simple implementation of Bloom Filter and Scalable Bloom Filter for Python 3.',
long_description=readme(file_name='README.md'),
keywords='bloom-filter scalable-bloom-filter bloomfilter python-3 hashing algorithm data-structure',
url='https://github.com/dnanhkhoa/simple-bloom-filter',
author='Khoa Duong',
author_email='[email protected]',
license='MIT',
packages=['bloomfilter'],
zip_safe=False,
install_requires=['mmh3', 'bitarray'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
])