setup.py
author Amy Woodehy <amywoodehy@gmail.com>
Wed, 12 Aug 2015 11:41:38 +0600
changeset 53 e2eaf1755fce
parent 51 1459aa5d7ce4
child 55 bc23472ae284
permissions -rw-r--r--
[#71] missing .mobi, .io, .kg, .su, .biz added classes with inheritance of existing ones, because of same registrar. .kg is trickier. it's registrar is unique, and i haven't figured out how to parse name_servers properly

import sys, os
import setuptools

version = '0.3.1'

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
)