setup.py
author Evgeni Kunev <evgeni.kunev@gmail.com>
Tue, 19 Aug 2014 15:24:51 +0300
changeset 39 68375a768598
parent 31 92176112c2d6
child 51 1459aa5d7ce4
permissions -rw-r--r--
Better date parsing support if python-dateutil is available The `strptime` and `strftime` functions can't deal with timezone names not known to the current system when there's a %Z in the format string.

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'},
    package_data={
        'whois': ['data/*.txt']
    },
    extras_require={
        'better date conversion': ["python-dateutil"]
    },
    include_package_data=True,
    zip_safe=False,
)