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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
ea0e45971cea initial commit to mercurial
Richard Baron Penman
parents:
diff changeset
     1
import sys, os
51
1459aa5d7ce4 added manifest to add missing tlds.txt file
Richard Penman
parents: 39
diff changeset
     2
import setuptools
0
ea0e45971cea initial commit to mercurial
Richard Baron Penman
parents:
diff changeset
     3
62
fc06c601b875 whois client was using the first whois server in list rather than the whois server associated with the domain we are querying issue #74
Richard Penman
parents: 55
diff changeset
     4
version = '0.5'
0
ea0e45971cea initial commit to mercurial
Richard Baron Penman
parents:
diff changeset
     5
51
1459aa5d7ce4 added manifest to add missing tlds.txt file
Richard Penman
parents: 39
diff changeset
     6
setuptools.setup(
12
c57439b500cb fixed test cases
Richard Baron Penman
parents: 1
diff changeset
     7
    name='python-whois',
1
41781274f1e9 updated setup
Richard Baron Penman
parents: 0
diff changeset
     8
    version=version,
41781274f1e9 updated setup
Richard Baron Penman
parents: 0
diff changeset
     9
    description="Whois querying and parsing of domain registration information.",
41781274f1e9 updated setup
Richard Baron Penman
parents: 0
diff changeset
    10
    long_description='',
41781274f1e9 updated setup
Richard Baron Penman
parents: 0
diff changeset
    11
    classifiers=[
41781274f1e9 updated setup
Richard Baron Penman
parents: 0
diff changeset
    12
        'Environment :: Web Environment',
41781274f1e9 updated setup
Richard Baron Penman
parents: 0
diff changeset
    13
        'Intended Audience :: Developers',
41781274f1e9 updated setup
Richard Baron Penman
parents: 0
diff changeset
    14
        'License :: OSI Approved :: MIT License',
41781274f1e9 updated setup
Richard Baron Penman
parents: 0
diff changeset
    15
        'Operating System :: OS Independent',
41781274f1e9 updated setup
Richard Baron Penman
parents: 0
diff changeset
    16
        'Programming Language :: Python',
41781274f1e9 updated setup
Richard Baron Penman
parents: 0
diff changeset
    17
        'Topic :: Internet :: WWW/HTTP'
41781274f1e9 updated setup
Richard Baron Penman
parents: 0
diff changeset
    18
    ],
12
c57439b500cb fixed test cases
Richard Baron Penman
parents: 1
diff changeset
    19
    keywords='whois, python',
1
41781274f1e9 updated setup
Richard Baron Penman
parents: 0
diff changeset
    20
    author='Richard Penman',
41781274f1e9 updated setup
Richard Baron Penman
parents: 0
diff changeset
    21
    author_email='richard@webscraping.com',
51
1459aa5d7ce4 added manifest to add missing tlds.txt file
Richard Penman
parents: 39
diff changeset
    22
    url='https://bitbucket.org/richardpenman/pywhois',
1
41781274f1e9 updated setup
Richard Baron Penman
parents: 0
diff changeset
    23
    license='MIT',
12
c57439b500cb fixed test cases
Richard Baron Penman
parents: 1
diff changeset
    24
    packages=['whois'],
c57439b500cb fixed test cases
Richard Baron Penman
parents: 1
diff changeset
    25
    package_dir={'whois':'whois'},
39
68375a768598 Better date parsing support if python-dateutil is available
Evgeni Kunev <evgeni.kunev@gmail.com>
parents: 31
diff changeset
    26
    extras_require={
68375a768598 Better date parsing support if python-dateutil is available
Evgeni Kunev <evgeni.kunev@gmail.com>
parents: 31
diff changeset
    27
        'better date conversion': ["python-dateutil"]
68375a768598 Better date parsing support if python-dateutil is available
Evgeni Kunev <evgeni.kunev@gmail.com>
parents: 31
diff changeset
    28
    },
1
41781274f1e9 updated setup
Richard Baron Penman
parents: 0
diff changeset
    29
    include_package_data=True,
51
1459aa5d7ce4 added manifest to add missing tlds.txt file
Richard Penman
parents: 39
diff changeset
    30
    zip_safe=False
1
41781274f1e9 updated setup
Richard Baron Penman
parents: 0
diff changeset
    31
)