2016-04-30 15:41:28 +04:30
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
|
|
name = "dnsdiag",
|
2016-05-02 17:02:09 +04:30
|
|
|
version = "1.3.0",
|
2016-04-30 22:26:00 +04:30
|
|
|
packages = find_packages(),
|
2016-05-01 23:02:57 +04:30
|
|
|
install_requires = ['cymruwhois==1.5'],
|
2016-04-30 21:47:15 +04:30
|
|
|
dependency_links = [
|
2016-05-01 23:02:57 +04:30
|
|
|
"https://github.com/JustinAzoff/python-cymruwhois/archive/1.5.zip#egg=cymruwhois-1.5"
|
2016-04-30 21:47:15 +04:30
|
|
|
],
|
|
|
|
|
2016-04-30 15:41:28 +04:30
|
|
|
scripts = ['dnsping.py', 'dnstraceroute.py', 'dnseval.py'],
|
|
|
|
classifiers=[
|
|
|
|
"Topic :: System :: Networking",
|
|
|
|
"Environment :: Console",
|
|
|
|
"Intended Audience :: Developers",
|
2016-05-02 11:17:00 +04:30
|
|
|
"License :: OSI Approved :: BSD License",
|
|
|
|
'Programming Language :: Python :: 3.4',
|
2016-04-30 15:41:28 +04:30
|
|
|
"Development Status :: 5 - Production/Stable",
|
2016-05-02 11:17:00 +04:30
|
|
|
"Operating System :: OS Independent",
|
|
|
|
|
2016-04-30 15:41:28 +04:30
|
|
|
],
|
|
|
|
|
|
|
|
author = "Babak Farrokhi",
|
|
|
|
author_email = "babak@farrokhi.net",
|
|
|
|
description = "DNS Diagnostics and measurement tools (ping, traceroute)",
|
|
|
|
long_description = """
|
|
|
|
DNSDiag provides a handful of tools to measure and diagnose your DNS
|
|
|
|
performance and integrity. Using dnsping, dnstraceroute and dnseval tools
|
|
|
|
you can measure your DNS response quality from delay and loss perspective
|
|
|
|
as well as tracing the path your DNS query takes to get to DNS server.
|
|
|
|
""",
|
|
|
|
license = "BSD",
|
|
|
|
keywords = "dns traceroute ping",
|
2016-04-30 17:15:52 +04:30
|
|
|
url = "https://dnsdiag.org/",
|
2016-04-30 15:41:28 +04:30
|
|
|
)
|