| 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-- |
| 0 | 1 |
from setuptools import setup, find_packages |
2 |
import sys, os |
|
3 |
||
| 12 | 4 |
version = '0.2' |
| 0 | 5 |
|
| 1 | 6 |
setup( |
| 12 | 7 |
name='python-whois', |
| 1 | 8 |
version=version, |
9 |
description="Whois querying and parsing of domain registration information.", |
|
10 |
long_description='', |
|
11 |
classifiers=[ |
|
12 |
'Environment :: Web Environment', |
|
13 |
'Intended Audience :: Developers', |
|
14 |
'License :: OSI Approved :: MIT License', |
|
15 |
'Operating System :: OS Independent', |
|
16 |
'Programming Language :: Python', |
|
17 |
'Topic :: Internet :: WWW/HTTP' |
|
18 |
], |
|
| 12 | 19 |
keywords='whois, python', |
| 1 | 20 |
author='Richard Penman', |
21 |
author_email='richard@webscraping.com', |
|
22 |
url='http://code.google.com/p/pywhois/', |
|
23 |
license='MIT', |
|
| 12 | 24 |
packages=['whois'], |
25 |
package_dir={'whois':'whois'},
|
|
|
31
92176112c2d6
Move tlds.txt to a data/ folder and add it to the package
Evgeni Kunev <evgeni.kunev@gmail.com>
parents:
12
diff
changeset
|
26 |
package_data={
|
|
92176112c2d6
Move tlds.txt to a data/ folder and add it to the package
Evgeni Kunev <evgeni.kunev@gmail.com>
parents:
12
diff
changeset
|
27 |
'whois': ['data/*.txt'] |
|
92176112c2d6
Move tlds.txt to a data/ folder and add it to the package
Evgeni Kunev <evgeni.kunev@gmail.com>
parents:
12
diff
changeset
|
28 |
}, |
|
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, |
33 |
zip_safe=False, |
|
34 |
) |