Proper setup script

This commit is contained in:
Larry Kim 2013-05-07 20:42:06 +09:00
parent b9d952ba4a
commit c6c48f56eb
2 changed files with 18 additions and 21 deletions

View File

@ -8,22 +8,19 @@ __version__ = '0.1'
setup(name='whois', setup(name='whois',
version=__version__, version=__version__,
description="", description="The Whois client, which is developed in Python language, retrieves domain information from the server.",
long_description="", classifiers=[
classifiers=[], "License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Environment :: Console",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='whois', keywords='whois',
author='Larry Kim', author='Larry Kim',
author_email='admin@relip.org', author_email='admin@relip.org',
url='http://github.com/relip/python-whois', url='http://github.com/relip/python-whois',
license='MIT', license='MIT',
package_dir={},
packages=['whois'], packages=['whois'],
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
""",
) )

View File

@ -6,6 +6,6 @@
# \ \_\\ \_\\"\_\\ \_\ \ \_\ # \ \_\\ \_\\"\_\\ \_\ \ \_\
# \/_/ \/_/ \/_/ \/_/ \/_/ # \/_/ \/_/ \/_/ \/_/ \/_/
from whois import * from whois import Whois as whois
from parser import * from parser import Parser as parser