whois/setup.py

29 lines
742 B
Python
Executable File

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import sys, os
__version__ = '0.2'
setup(name='whois',
version=__version__,
description="The Whois client, which is developed in Python language, retrieves domain information from the server.",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Environment :: Console",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='whois',
author='Larry Kim',
author_email='admin@relip.org',
url='http://github.com/relip/python-whois',
license='MIT',
packages=['whois'],
package_data={"whois": ["tlds/*", "nics/*"]},
)