File: setup.py

package info (click to toggle)
python-flor 1.1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 108 kB
  • sloc: python: 183; sh: 6; makefile: 5
file content (16 lines) | stat: -rw-r--r-- 431 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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'],
     )