-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
46 lines (39 loc) · 1.38 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
#!/usr/bin/env python2.7
"""
Install script for fuggetaboutit
micha gorelick, [email protected]
http://micha.gd/
"""
from setuptools import setup, Extension
import numpy.distutils.misc_util
_optimizations = Extension(
'fuggetaboutit._optimizations',
sources = ['fuggetaboutit/_optimizations.c', ],
extra_compile_args = ["-O2", "-std=c99", "-Wall", "-g"],
)
setup(
name = 'fuggetaboutit',
version = '0.4.0-dev.4',
description = 'implementations of a counting bloom filter, a ' \
'timing bloom filter and a scaling timing bloom filter. ie: bloom ' \
'filters for the stream',
author = 'Micha Gorelick',
author_email = '[email protected]',
url = 'http://github.com/mynameisfiber/fuggetaboutit/',
download_url = 'https://github.com/mynameisfiber/fuggetaboutit/tarball/master',
license = "GNU Lesser General Public License v3 or later (LGPLv3+)",
classifiers = [
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
],
packages = ['fuggetaboutit',],
ext_modules = [_optimizations,],
include_dirs = numpy.distutils.misc_util.get_numpy_include_dirs(),
install_requires = [
"numpy",
"mmh3",
"tornado>=3",
],
)