Fix setuptool installation and dependecies

This commit is contained in:
Babak Farrokhi 2017-04-30 19:35:36 +04:30
parent 51e3d252f2
commit a0f9cae673
Signed by: farrokhi
GPG Key ID: 6B267AD85D632E9A
5 changed files with 8 additions and 5 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -1 +1 @@
dnspython==1.15.0
dnspython>=1.15.0

View File

@ -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",