ntopng/python/setup.py.in
2023-01-30 12:56:17 +01:00

13 lines
383 B
Python

from setuptools import setup
setup(
name='ntopng',
version='@NTOPNG_VERSION@',
description='ntopng Python package',
url='https://github.com/ntop/ntopng',
author='ntop',
author_email='packager@ntop.org',
license='GPL',
packages=['ntopng'],
install_requires=['requests', 'simplejson', 'numpy', 'pandas', 'kaleido', 'fpdf', 'plotly', 'redmail'],
)