setup.py
changeset 12 c57439b500cb
parent 1 41781274f1e9
child 31 92176112c2d6
equal deleted inserted replaced
11:5083c26d8f93 12:c57439b500cb
     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.2'
     5 
     5 
     6 setup(
     6 setup(
     7     name='whois',
     7     name='python-whois',
     8     version=version,
     8     version=version,
     9     description="Whois querying and parsing of domain registration information.",
     9     description="Whois querying and parsing of domain registration information.",
    10     long_description='',
    10     long_description='',
    11     classifiers=[
    11     classifiers=[
    12         'Environment :: Web Environment',
    12         'Environment :: Web Environment',
    14         'License :: OSI Approved :: MIT License',
    14         'License :: OSI Approved :: MIT License',
    15         'Operating System :: OS Independent',
    15         'Operating System :: OS Independent',
    16         'Programming Language :: Python',
    16         'Programming Language :: Python',
    17         'Topic :: Internet :: WWW/HTTP'
    17         'Topic :: Internet :: WWW/HTTP'
    18     ],
    18     ],
    19     keywords='whois',
    19     keywords='whois, python',
    20     author='Richard Penman',
    20     author='Richard Penman',
    21     author_email='richard@webscraping.com',
    21     author_email='richard@webscraping.com',
    22     url='http://code.google.com/p/pywhois/',
    22     url='http://code.google.com/p/pywhois/',
    23     license='MIT',
    23     license='MIT',
    24     packages=['pywhois'],
    24     packages=['whois'],
    25     package_dir={'pywhois':'pywhois'},
    25     package_dir={'whois':'whois'},
    26     include_package_data=True,
    26     include_package_data=True,
    27     zip_safe=False,
    27     zip_safe=False,
    28 )
    28 )