From e7fdf1c52ce6ab6f4ace2eb014e3d953c85e7c81 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Fri, 21 Sep 2012 17:08:55 +0200 Subject: [PATCH] Include setup script --- setup.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..5241f4e --- /dev/null +++ b/setup.py @@ -0,0 +1,11 @@ +from setuptools import setup + +setup(name='pythonwhois', + version='1.0.0', + description='Module for retrieving and parsing the WHOIS data for a domain. Supports most domains.', + author='Sven Slootweg', + author_email='pythonwhois@cryto.net', + url='http://cryto.net/pythonwhois', + packages=['pythonwhois'], + provides=['pythonwhois'] + )