From e40dd99727635d79a952223f6e5c21464a6b0d90 Mon Sep 17 00:00:00 2001 From: Cyril Jaquier Date: Thu, 28 Jul 2005 20:30:34 +0000 Subject: [PATCH] - Added description git-svn-id: https://fail2ban.svn.sourceforge.net/svnroot/fail2ban/branches/FAIL2BAN-0_5@158 a942ae1a-1317-0410-a47c-b1dcaea8d605 --- setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/setup.py b/setup.py index 9c394177..a2d4b4bc 100755 --- a/setup.py +++ b/setup.py @@ -31,13 +31,23 @@ from version import version from os.path import isfile, join from sys import exit, argv +longdesc = ''' +Fail2Ban scans log files like /var/log/pwdfail or +/var/log/apache/error_log and bans IP that makes +too many password failures. It updates firewall rules +to reject the IP address or executes user defined +commands. It needs log4py.''' + setup( name = "fail2ban", version = version, description = "Ban IPs that make too many password failure", + long_description = longdesc, author = "Cyril Jaquier", author_email = "lostcontrol@users.sourceforge.net", url = "http://fail2ban.sourceforge.net", + license = "GPL", + platforms = "Posix", scripts = ['fail2ban'], py_modules = ['fail2ban', 'version'], packages = ['firewall', 'logreader', 'confreader', 'utils']