setup.py
author Egon Kidmose <kidmose@gmail.com>
Thu, 15 Feb 2018 15:00:18 +0100
branchfeature/test-missing-keys
changeset 166 6cbe4891d62a
parent 158 bcae8cb61002
child 170 6126b6d3e2ad
permissions -rw-r--r--
test_parser.py: Fail on missing keys

import sys, os
import setuptools

version = '0.6.8'

setuptools.setup(
    name='python-whois',
    version=version,
    description="Whois querying and parsing of domain registration information.",
    long_description='',
    install_requires=[
        'future',
    ],
    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"]
    },
    test_suite='nose.collector',
    tests_require=['nose', 'simplejson'],
    include_package_data=True,
    zip_safe=False
)