diff -r 000000000000 -r ea0e45971cea setup.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Wed Oct 19 17:09:00 2011 +0900 @@ -0,0 +1,26 @@ +from setuptools import setup, find_packages +import sys, os + +version = '0.1' + +setup(name='pywhois', + version=version, + description="Whois querying and parsing of domain registration information.", + long_description="""\ +""", + classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers + keywords='whois', + author='Andrey Petrov', + author_email='andrey.petrov@shazow.net', + url='http://code.google.com/p/pywhois/', + license='MIT', + packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), + include_package_data=True, + zip_safe=False, + install_requires=[ + # -*- Extra requirements: -*- + ], + entry_points=""" + # -*- Entry points: -*- + """, + )