ntopng/python/setup.py.in
2022-12-04 12:41:22 +01:00

13 lines
325 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' ],
)