| author | Egon Kidmose <kidmose@gmail.com> |
| Thu, 15 Feb 2018 15:00:18 +0100 | |
| branch | feature/test-missing-keys |
| changeset 166 | 6cbe4891d62a |
| parent 158 | bcae8cb61002 |
| child 170 | 6126b6d3e2ad |
| permissions | -rw-r--r-- |
| 0 | 1 |
import sys, os |
| 51 | 2 |
import setuptools |
| 0 | 3 |
|
| 158 | 4 |
version = '0.6.8' |
| 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 |
}, |
|
94
4466b5b65881
Enable testing in setup.py
Mario D. Santana <mario@elorangutan.com>
parents:
81
diff
changeset
|
32 |
test_suite='nose.collector', |
|
97
44522cd37b07
Fixed tests. Also some UTF bugs (python2/3 hell)
Mario D. Santana <mario@elorangutan.com>
parents:
94
diff
changeset
|
33 |
tests_require=['nose', 'simplejson'], |
| 1 | 34 |
include_package_data=True, |
| 51 | 35 |
zip_safe=False |
| 1 | 36 |
) |