netflow/setup.py
Dominik Pataky 0d8f1a2ecb Add ParsedPacket named tuple for queue; extend tests
Before, the output queue of the collector received unnamed tuples with
three fields. This broke the tests and was less understandable. The new
version uses a named tuple for clarity.

The tests were adapted to the new type in the queue and are fixed.

For backwards compatibility a check of the Python version is added and
the subprocess stdout/stderr arguments are passed depending on this
version. See #18.
2020-03-19 18:16:03 +01:00

13 lines
317 B
Python

#!/usr/bin/env python3
from setuptools import setup
setup(name='netflow',
version='0.8.1',
description='NetFlow v1, v5, and v9 collector, parser and analyzer implemented in Python 3.',
author='Dominik Pataky',
author_email='dev@bitkeks.eu',
packages=["netflow"],
license='MIT'
)