setup.py
author Richard Penman
Tue, 08 Sep 2015 11:09:02 +0800
changeset 62 fc06c601b875
parent 55 bc23472ae284
child 64 2ed54e885571
permissions -rw-r--r--
whois client was using the first whois server in list rather than the whois server associated with the domain we are querying issue #74

import sys, os
import setuptools

version = '0.5'

setuptools.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='https://bitbucket.org/richardpenman/pywhois',
    license='MIT',
    packages=['whois'],
    package_dir={'whois':'whois'},
    extras_require={
        'better date conversion': ["python-dateutil"]
    },
    include_package_data=True,
    zip_safe=False
)