You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
438 B
Python
14 lines
438 B
Python
from setuptools import setup
|
|
|
|
setup(name='pythonwhois',
|
|
version='2.0.0',
|
|
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'],
|
|
provides=['pythonwhois'],
|
|
scripts=["pwhois"],
|
|
license="WTFPL"
|
|
)
|