netflow/setup.py
Dominik Pataky 9395aafa71 Fix missing IP_PROTOCOL_VERSION field in analyzer
Checks for the key first and handles non-existence.
Update to Copyright notices.

Fixes #3
2018-02-20 12:09:54 +01:00

17 lines
540 B
Python

#!/usr/bin/env python3
from setuptools import setup, find_packages
import os
data_files = [(d, [os.path.join(d, f) for f in files])
for d, folders, files in os.walk(os.path.join('src', 'config'))]
setup(name='netflow-v9',
version='0.6.1',
description='NetFlow v9 parser and collector implemented in Python 3. Developed to be used with softflowd v0.9.9',
author='Dominik Pataky',
author_email='dev@bitkeks.eu',
packages=find_packages('src'),
package_dir={'': 'src'},
license='MIT'
)