setup.py
author Richard Penman
Wed, 02 Mar 2016 10:23:00 +0000
branchpython3
changeset 76 15046f9af464
parent 72 26db2c025614
child 77 df9f497129e8
permissions -rw-r--r--
merged with trunk

import sys, os
import setuptools

version = '0.5.1'

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"]
    },
    include_package_data=True,
    zip_safe=False
)