diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..3d2af8c --- /dev/null +++ b/setup.py @@ -0,0 +1,23 @@ +from version import * + +from distutils.core import setup, Extension + +module1 = Extension('net_monitor', + sources=['native/net_monitor.c']) + +setup (name='net_monitor', + version=version, + description='Mandriva network monitoring tool', + author="Eugeni Dodonov", + author_email="eugeni@mandriva.com", + url="http://www.mandriva.com", + license="GPL", + long_description= +"""\ +This is a network monitoring tool for Mandriva Linux, intended to replace the +old net_monitor from drakx-net. It supports graphical network monitoring and +some advanced features, such as network profiling, activity monitoring, +detailed logging and network traffic statistics with help of vnstat reporting. +""", + scripts=["net_monitor"], + ext_modules=[module1]) |