- cymruwhois maintainer recovered his access to pypi and uploaded latest package. There is no need to use it as submodule anymore. So we added an external dependency. - Refactor whois data caching in dnstraceroute and unbreak caching mechanism which was broken since previous commit due to a bug in time delta calculation.
41 lines
1.4 KiB
Python
41 lines
1.4 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="dnsdiag",
|
|
version="1.6.3",
|
|
packages=find_packages(),
|
|
scripts=["dnseval.py", "dnsping.py", "dnstraceroute.py"],
|
|
install_requires=['dnspython>=1.15.0', 'cymruwhois>=1.6'],
|
|
|
|
classifiers=[
|
|
"Topic :: System :: Networking",
|
|
"Environment :: Console",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: BSD License",
|
|
"Programming Language :: Python :: 3.4",
|
|
"Topic :: Internet :: Name Service (DNS)",
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
|
|
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",
|
|
url="https://dnsdiag.org/",
|
|
entry_points={
|
|
'console_scripts': [
|
|
'dnsping = dnsping:main',
|
|
'dnstraceroute = dnstraceroute:main',
|
|
'dnseval = dnseval:main',
|
|
]
|
|
}
|
|
)
|