3 Commits

Author SHA1 Message Date
3df692e6db No more needed 2017-04-30 21:18:45 +04:30
2dcf0e7b78 Fix setuptools 2017-04-30 21:12:08 +04:30
a0f9cae673 Fix setuptool installation and dependecies 2017-04-30 19:35:36 +04:30
6 changed files with 9 additions and 6 deletions

View File

@ -49,7 +49,7 @@ git submodule update --init
2. You can alternatively install the package using pip:
```
pip3 install --process-dependency-links dnsdiag
pip3 install dnsdiag
```
## From Binary

View File

@ -40,7 +40,7 @@ import dns.resolver
__author__ = 'Babak Farrokhi (babak@farrokhi.net)'
__license__ = 'BSD'
__version__ = "1.6.0"
__version__ = "1.6.2"
__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.2"
__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.2"
_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.2",
packages=find_packages(),
scripts=["dnseval.py", "dnsping.py", "dnstraceroute.py"],
install_requires=['dnspython>=1.15.0'],
classifiers=[
"Topic :: System :: Networking",
"Environment :: Console",