| author | Richard <richardbp@gmail.com> |
| Fri, 08 Jun 2018 14:19:01 +0000 | |
| changeset 182 | 515531068842 |
| parent 176 | 1bd3f3f7fe2a |
| permissions | -rw-r--r-- |
| 0 | 1 |
import sys, os |
| 51 | 2 |
import setuptools |
| 0 | 3 |
|
|
176
1bd3f3f7fe2a
add supported python versions
Vitaliy Kharitonsky <v.haritonskiy@smartweb.com.ua>
parents:
175
diff
changeset
|
4 |
version = '0.7.0' |
| 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', |
|
|
175
f7797b7cb257
add supported python versions
Vitaliy Kharitonsky <v.haritonskiy@smartweb.com.ua>
parents:
170
diff
changeset
|
20 |
'Topic :: Internet :: WWW/HTTP', |
|
f7797b7cb257
add supported python versions
Vitaliy Kharitonsky <v.haritonskiy@smartweb.com.ua>
parents:
170
diff
changeset
|
21 |
'Programming Language :: Python :: 2', |
|
f7797b7cb257
add supported python versions
Vitaliy Kharitonsky <v.haritonskiy@smartweb.com.ua>
parents:
170
diff
changeset
|
22 |
'Programming Language :: Python :: 3', |
| 1 | 23 |
], |
| 12 | 24 |
keywords='whois, python', |
| 1 | 25 |
author='Richard Penman', |
26 |
author_email='richard@webscraping.com', |
|
| 51 | 27 |
url='https://bitbucket.org/richardpenman/pywhois', |
| 1 | 28 |
license='MIT', |
| 12 | 29 |
packages=['whois'], |
30 |
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
|
31 |
extras_require={
|
|
68375a768598
Better date parsing support if python-dateutil is available
Evgeni Kunev <evgeni.kunev@gmail.com>
parents:
31
diff
changeset
|
32 |
'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
|
33 |
}, |
|
94
4466b5b65881
Enable testing in setup.py
Mario D. Santana <mario@elorangutan.com>
parents:
81
diff
changeset
|
34 |
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
|
35 |
tests_require=['nose', 'simplejson'], |
| 1 | 36 |
include_package_data=True, |
| 51 | 37 |
zip_safe=False |
| 1 | 38 |
) |