# HG changeset patch # User Richard Baron Penman # Date 1357618774 -39600 # Node ID 41781274f1e9dbea6063d9551c8584093dc8e82a # Parent ea0e45971cea31656dfa687dd701a201929ad830 updated setup diff -r ea0e45971cea -r 41781274f1e9 setup.py --- a/setup.py Wed Oct 19 17:09:00 2011 +0900 +++ b/setup.py Tue Jan 08 15:19:34 2013 +1100 @@ -3,24 +3,26 @@ 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: -*- - """, - ) +setup( + name='whois', + version=version, + description="Whois querying and parsing of domain registration information.", + long_description='', + classifiers=[ + 'Environment :: Web Environment', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: MIT License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Internet :: WWW/HTTP' + ], + keywords='whois', + author='Richard Penman', + author_email='richard@webscraping.com', + url='http://code.google.com/p/pywhois/', + license='MIT', + packages=['pywhois'], + package_dir={'pywhois':'pywhois'}, + include_package_data=True, + zip_safe=False, +)