aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 3d2af8cdcf3e7b12761c644e7ffcd751f202063b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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])