From 7341031a30f70fc8f6dacbe6828836a3b262f0e6 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Sat, 20 Apr 2013 23:12:38 -0400 Subject: [PATCH] ENH: use os.path.join for consistency -- add "Contributors" to authors --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 6202fde7..f99e4f35 100755 --- a/setup.py +++ b/setup.py @@ -18,8 +18,8 @@ # along with Fail2Ban; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -__author__ = "Cyril Jaquier" -__copyright__ = "Copyright (c) 2004 Cyril Jaquier" +__author__ = "Cyril Jaquier, Steven Hiscocks, Yaroslav Halchenko" +__copyright__ = "Copyright (c) 2004 Cyril Jaquier, 2008-2013 Fail2Ban Contributors" __license__ = "GPL" try: @@ -77,7 +77,7 @@ else: # Get version number, avoiding importing fail2ban. # This is due to tests not functioning for python3 as 2to3 takes place later -f = open("fail2ban/version.py") +f = open(join("fail2ban", "version.py")) exec(f.read()) f.close() @@ -86,7 +86,7 @@ setup( version = version, description = "Ban IPs that make too many password failures", long_description = longdesc, - author = "Cyril Jaquier", + author = "Cyril Jaquier & Fail2Ban Contributors", author_email = "cyril.jaquier@fail2ban.org", url = "http://www.fail2ban.org", license = "GPL",