update README and setuptools script

This commit is contained in:
Babak Farrokhi 2016-04-30 17:15:52 +04:30
parent 3052447bf7
commit e64e67881f
Signed by: farrokhi
GPG Key ID: 6B267AD85D632E9A
2 changed files with 7 additions and 3 deletions

View File

@ -3,7 +3,7 @@
DNS Diagnostics and Performance Measurement Tools
==================================================
Ever been wondering if your ISP is hijacking your DNS traffic? Ever observed any
Ever been wondering if your ISP is [hijacking your DNS traffic](https://decentralize.today/is-your-isp-hijacking-your-dns-traffic-f3eb7ccb0ee7#.fevks5wyc)? Ever observed any
misbehavior with your DNS responses? Ever been redirected to wrong address and
suspected something is wrong with your DNS? Here we have a set of tools to
perform basic audits on your DNS requests and responses to make sure your DNS is
@ -89,6 +89,10 @@ server avg(ms) min(ms) max(ms) stddev(ms) lost(%)
208.67.220.220 137.817 135.822 140.113 1.504 %0
```
### License
dnsdiag is released under a 2 clause BSD license.
### Credits
- [@rthalley](https://github.com/rthalley) for invaluable [dnspython](https://github.com/rthalley/dnspython) library

View File

@ -1,7 +1,7 @@
from setuptools import setup, find_packages
setup(
name = "dnsdiag",
version = "1.2",
version = "1.2.1",
packages = find_packages(),
scripts = ['dnsping.py', 'dnstraceroute.py', 'dnseval.py'],
classifiers=[
@ -25,5 +25,5 @@ as well as tracing the path your DNS query takes to get to DNS server.
""",
license = "BSD",
keywords = "dns traceroute ping",
url = "https://github.com/farrokhi/dnsdiag",
url = "https://dnsdiag.org/",
)