Changeset 920

Show
Ignore:
Timestamp:
11/04/2008 06:59:33 AM (2 months ago)
Author:
chris
Message:

Updated setup.py.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • eddie/trunk/setup.py

    r917 r920  
    77from eddietool.version import version 
    88 
    9 setup(name='Eddie-Tool', 
     9setup(name='EDDIE-Tool', 
    1010    version=version, 
    11     description="System monitoring agent.", 
    12     long_description=""" 
    13 """, 
    14     classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers 
     11    description="The EDDIE Tool is a system and network monitoring, security, and performance analysis agent developed entirely in threaded Python. Its key features are portability, extendibility, and powerful configuration.", 
     12    long_description="""\ 
     13The EDDIE Tool can perform all basic system monitoring checks, such as: filesystem; processes; system load; and network configuration. It can also perform such network monitoring tasks as: ping checks; HTTP checks; POP3 tests; SNMP queries; RADIUS authentication tests; and customized TCP port checks. Finally, a few checks lend themselves to security monitoring: watching files for changes; and scanning logfiles. The EDDIE Tool can also send any collected statistic to RRD files to be displayed graphically by any standard RRD tool. No need to run multiple monitoring and data collection agents. Monitoring rules are just like Python expressions and can be as simple or as complex as needed. Advanced alert control functionality such as exponential back-off and dependencies are also standard.""", 
     14    classifiers=[ 
     15        "Development Status :: 5 - Production/Stable", 
     16        "Environment :: No Input/Output (Daemon)", 
     17        "Intended Audience :: System Administrators", 
     18        "License :: OSI Approved :: GNU General Public License (GPL)", 
     19        "Operating System :: MacOS :: MacOS X", 
     20        "Operating System :: Microsoft :: Windows", 
     21        "Operating System :: POSIX :: BSD :: FreeBSD", 
     22        "Operating System :: POSIX :: BSD :: OpenBSD", 
     23        "Operating System :: POSIX :: HP-UX", 
     24        "Operating System :: POSIX :: Linux", 
     25        "Operating System :: POSIX :: SunOS/Solaris", 
     26        "Programming Language :: Python", 
     27        "Topic :: System :: Monitoring", 
     28        "Topic :: System :: Networking :: Monitoring", 
     29        "Topic :: System :: Systems Administration", 
     30    ], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers 
    1531    keywords='', 
    1632    author='Chris Miles', 
    1733    author_email='miles.chris@gmail.com', 
    1834    url='http://eddie-tool.net/', 
    19     download_url='http://eddie-tool.net/download/download.html', 
     35    download_url='http://pypi.python.org/pypi/EDDIE-Tool', 
    2036    license='GPL', 
    2137    packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),