#!/usr/bin/env python

# DCSO - Flor
# Copyright (c) 2016, 2017, DCSO GmbH. All rights reserved.

from setuptools import setup

setup(name='Flor',
      version='1.1.3',
      description='Flor - An efficient Bloom filter implementation in Python',
      author='Andreas Dewes - DCSO GmbH',
      author_email='andreas.dewes@dcso.de',
      url='https://github.com/DCSO/flor',
      license='BSD3',
      packages=['flor'],
     )
