forked from hiway/python-bloom-filter
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 774 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 774 Bytes
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
#!/usr/bin/env python
from setuptools import find_packages
from setuptools import setup
setup(
name="bloom-filter2",
version="2.0.0",
packages=find_packages('src'),
package_dir={'': 'src'},
author="Harshad Sharma",
author_email="harshad@sharma.io",
maintainer="Remi Rampin",
maintainer_email="remi@rampin.org",
description='Pure Python Bloom Filter module',
long_description=open('README.rst').read(),
license="MIT",
keywords="probabilistic set datastructure",
url='https://github.com/remram44/python-bloom-filter',
platforms='Cross platform',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
],
)