setup.py
author Richard Baron Penman
Tue, 08 Jan 2013 18:23:18 +1100
changeset 12 c57439b500cb
parent 1 41781274f1e9
child 31 92176112c2d6
permissions -rw-r--r--
fixed test cases

from setuptools import setup, find_packages
import sys, os

version = '0.2'

setup(
    name='python-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, python',
    author='Richard Penman',
    author_email='richard@webscraping.com',
    url='http://code.google.com/p/pywhois/',
    license='MIT',
    packages=['whois'],
    package_dir={'whois':'whois'},
    include_package_data=True,
    zip_safe=False,
)