mirror of
https://github.com/joepie91/python-whois.git
synced 2026-02-04 03:16:51 -06:00
15 lines
475 B
Python
15 lines
475 B
Python
from setuptools import setup
|
|
|
|
setup(name='pythonwhois',
|
|
version='2.1.4',
|
|
description='Module for retrieving and parsing the WHOIS data for a domain. Supports most domains. No dependencies.',
|
|
author='Sven Slootweg',
|
|
author_email='pythonwhois@cryto.net',
|
|
url='http://cryto.net/pythonwhois',
|
|
packages=['pythonwhois'],
|
|
install_requires=['argparse'],
|
|
provides=['pythonwhois'],
|
|
scripts=["pwhois"],
|
|
license="WTFPL"
|
|
)
|