mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-28 06:59:33 +00:00
13 lines
377 B
Python
13 lines
377 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='ntopng',
|
|
version='6.5.250813',
|
|
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'],
|
|
)
|