-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
49 lines (37 loc) · 1.09 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
NAME = "pybloomfilter"
PACKAGES = ["pybloomfilter", ]
DESCRIPTION = "This is a lightweight but fast bloomfilter."
LONG_DESCRIPTION = ""
KEYWORDS = ("bloomfilter", "hash", "bitset", "python")
AUTHOR = "preyta ren"
AUTHOR_EMAIL = "preyta@163.com"
URL = "https://github.com/preytaren/fastbloom"
VERSION = "v0.1.0"
LICENSE = "MIT"
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Natural Language :: English',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=['pyhash>=0.8.1', ],
keywords=KEYWORDS,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
license=LICENSE,
packages=PACKAGES,
include_package_data=True,
zip_safe=True,
)