|
0
|
1 |
from setuptools import setup, find_packages
|
|
|
2 |
import sys, os
|
|
|
3 |
|
|
|
4 |
version = '0.1'
|
|
|
5 |
|
|
1
|
6 |
setup(
|
|
|
7 |
name='whois',
|
|
|
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 |
],
|
|
|
19 |
keywords='whois',
|
|
|
20 |
author='Richard Penman',
|
|
|
21 |
author_email='richard@webscraping.com',
|
|
|
22 |
url='http://code.google.com/p/pywhois/',
|
|
|
23 |
license='MIT',
|
|
|
24 |
packages=['pywhois'],
|
|
|
25 |
package_dir={'pywhois':'pywhois'},
|
|
|
26 |
include_package_data=True,
|
|
|
27 |
zip_safe=False,
|
|
|
28 |
)
|