From a0f9cae673a20eb091f17acd8e74d85d19783e3b Mon Sep 17 00:00:00 2001 From: Babak Farrokhi Date: Sun, 30 Apr 2017 19:35:36 +0430 Subject: [PATCH] Fix setuptool installation and dependecies --- dnseval.py | 2 +- dnsping.py | 2 +- dnstraceroute.py | 2 +- requirements.txt | 2 +- setup.py | 5 ++++- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/dnseval.py b/dnseval.py index d9954bb..c721e61 100755 --- a/dnseval.py +++ b/dnseval.py @@ -40,7 +40,7 @@ import dns.resolver __author__ = 'Babak Farrokhi (babak@farrokhi.net)' __license__ = 'BSD' -__version__ = "1.6.0" +__version__ = "1.6.1" __progname__ = os.path.basename(sys.argv[0]) shutdown = False diff --git a/dnsping.py b/dnsping.py index 271cd2a..2ed1791 100755 --- a/dnsping.py +++ b/dnsping.py @@ -40,7 +40,7 @@ import dns.resolver __author__ = 'Babak Farrokhi (babak@farrokhi.net)' __license__ = 'BSD' -__version__ = "1.6.0" +__version__ = "1.6.1" __progname__ = os.path.basename(sys.argv[0]) shutdown = False diff --git a/dnstraceroute.py b/dnstraceroute.py index bb5228a..f88ce0b 100755 --- a/dnstraceroute.py +++ b/dnstraceroute.py @@ -43,7 +43,7 @@ from cymruwhois import cymruwhois __author__ = 'Babak Farrokhi (babak@farrokhi.net)' __license__ = 'BSD' -__version__ = "1.6.0" +__version__ = "1.6.1" _ttl = None quiet = False diff --git a/requirements.txt b/requirements.txt index a5d6526..fae5618 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -dnspython==1.15.0 +dnspython>=1.15.0 diff --git a/setup.py b/setup.py index 0b97af8..48f7684 100644 --- a/setup.py +++ b/setup.py @@ -2,8 +2,11 @@ from setuptools import setup, find_packages setup( name="dnsdiag", - version="1.6.0", + version="1.6.1", packages=find_packages(), + scripts=["dnseval.py", "dnsping.py", "dnstraceroute.py"], + install_requires=['dnspython>=1.15.0'], + classifiers=[ "Topic :: System :: Networking", "Environment :: Console",