| author | Evgeni Kunev <evgeni.kunev@gmail.com> |
| Tue, 12 Aug 2014 15:57:28 +0300 | |
| changeset 31 | 92176112c2d6 |
| parent 12 | c57439b500cb |
| child 39 | 68375a768598 |
| 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 |
}, |
| 1 | 29 |
include_package_data=True, |
30 |
zip_safe=False, |
|
31 |
) |