| author | Richard Penman |
| Wed, 02 Mar 2016 10:23:00 +0000 | |
| branch | python3 |
| changeset 76 | 15046f9af464 |
| parent 72 | 26db2c025614 |
| child 77 | df9f497129e8 |
| permissions | -rw-r--r-- |
| 0 | 1 |
import sys, os |
| 51 | 2 |
import setuptools |
| 0 | 3 |
|
|
64
2ed54e885571
only focus whois search after find many results, to avoid search failure
Richard Penman
parents:
62
diff
changeset
|
4 |
version = '0.5.1' |
| 0 | 5 |
|
| 51 | 6 |
setuptools.setup( |
| 12 | 7 |
name='python-whois', |
| 1 | 8 |
version=version, |
9 |
description="Whois querying and parsing of domain registration information.", |
|
10 |
long_description='', |
|
| 72 | 11 |
install_requires=[ |
12 |
'future', |
|
13 |
], |
|
| 1 | 14 |
classifiers=[ |
15 |
'Environment :: Web Environment', |
|
16 |
'Intended Audience :: Developers', |
|
17 |
'License :: OSI Approved :: MIT License', |
|
18 |
'Operating System :: OS Independent', |
|
19 |
'Programming Language :: Python', |
|
20 |
'Topic :: Internet :: WWW/HTTP' |
|
21 |
], |
|
| 12 | 22 |
keywords='whois, python', |
| 1 | 23 |
author='Richard Penman', |
24 |
author_email='richard@webscraping.com', |
|
| 51 | 25 |
url='https://bitbucket.org/richardpenman/pywhois', |
| 1 | 26 |
license='MIT', |
| 12 | 27 |
packages=['whois'], |
28 |
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
|
29 |
extras_require={
|
|
68375a768598
Better date parsing support if python-dateutil is available
Evgeni Kunev <evgeni.kunev@gmail.com>
parents:
31
diff
changeset
|
30 |
'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
|
31 |
}, |
| 1 | 32 |
include_package_data=True, |
| 51 | 33 |
zip_safe=False |
| 1 | 34 |
) |