File: setup.py

package info (click to toggle)
ganglia 3.7.2-7
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 7,088 kB
  • sloc: ansic: 28,847; sh: 12,202; python: 8,357; makefile: 503; perl: 366; php: 61; xml: 28
file content (32 lines) | stat: -rw-r--r-- 1,376 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from distutils.core import setup
from glob import glob

setup(name='gmetad-python',
      version='3.7.2',
      description='Ganglia Meta daemon in Python',
      maintainer='Ganglia Development Team',
      maintainer_email='ganglia-developers@lists.sourceforge.net',
      url='http://ganglia.info',
      license='BSD',
      long_description=
'''Ganglia is a scalable, real-time monitoring and execution environment
with all execution requests and statistics expressed in an open
well-defined XML format.

This gmetad daemon aggregates monitoring data from several clusters
to form a monitoring grid. It also keeps metric history using rrdtool.

gmetad-python is a re-write of the original gmetad code (written in C)
with pluggable interface.  The RRD files, both the metric RRDs and summary
RRDs are being written by RRD plugins rather than directly from gmetad.
This provides the ability to plug in new metric storage modules to support
other types of storage mechanisms other than RRD and also the ability to
plug in any type of gmetad-level analysis.''',
      platforms='Many',
      packages=['Gmetad'],
      scripts=['gmetad.py'],
      data_files=[('/usr/local/etc', ['gmetad-python.conf']),
                  ('/usr/local/lib64/ganglia/python_modules/gmetad', glob('plugins/*.py')),
                  ('', ['gmetad-python.service']),
                  ]
     )