setup.py
changeset 1 41781274f1e9
parent 0 ea0e45971cea
child 12 c57439b500cb
equal deleted inserted replaced
0:ea0e45971cea 1:41781274f1e9
     1 from setuptools import setup, find_packages
     1 from setuptools import setup, find_packages
     2 import sys, os
     2 import sys, os
     3 
     3 
     4 version = '0.1'
     4 version = '0.1'
     5 
     5 
     6 setup(name='pywhois',
     6 setup(
     7       version=version,
     7     name='whois',
     8       description="Whois querying and parsing of domain registration information.",
     8     version=version,
     9       long_description="""\
     9     description="Whois querying and parsing of domain registration information.",
    10 """,
    10     long_description='',
    11       classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
    11     classifiers=[
    12       keywords='whois',
    12         'Environment :: Web Environment',
    13       author='Andrey Petrov',
    13         'Intended Audience :: Developers',
    14       author_email='andrey.petrov@shazow.net',
    14         'License :: OSI Approved :: MIT License',
    15       url='http://code.google.com/p/pywhois/',
    15         'Operating System :: OS Independent',
    16       license='MIT',
    16         'Programming Language :: Python',
    17       packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
    17         'Topic :: Internet :: WWW/HTTP'
    18       include_package_data=True,
    18     ],
    19       zip_safe=False,
    19     keywords='whois',
    20       install_requires=[
    20     author='Richard Penman',
    21           # -*- Extra requirements: -*-
    21     author_email='richard@webscraping.com',
    22       ],
    22     url='http://code.google.com/p/pywhois/',
    23       entry_points="""
    23     license='MIT',
    24       # -*- Entry points: -*-
    24     packages=['pywhois'],
    25       """,
    25     package_dir={'pywhois':'pywhois'},
    26       )
    26     include_package_data=True,
       
    27     zip_safe=False,
       
    28 )