mirror of
https://github.com/fail2ban/fail2ban.git
synced 2026-08-04 06:39:05 +00:00
RF: setup.py now imports version number again
This commit is contained in:
parent
55810a3c30
commit
f07a92f0f7
1 changed files with 7 additions and 1 deletions
8
setup.py
8
setup.py
|
|
@ -75,9 +75,15 @@ if setuptools:
|
|||
else:
|
||||
setup_extra = {}
|
||||
|
||||
# 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")
|
||||
exec(f.read())
|
||||
f.close()
|
||||
|
||||
setup(
|
||||
name = "fail2ban",
|
||||
version = "0.9.0a",
|
||||
version = version,
|
||||
description = "Ban IPs that make too many password failures",
|
||||
long_description = longdesc,
|
||||
author = "Cyril Jaquier",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue