Proper setup script
This commit is contained in:
parent
b9d952ba4a
commit
c6c48f56eb
35
setup.py
35
setup.py
@ -7,23 +7,20 @@ import sys, os
|
|||||||
__version__ = '0.1'
|
__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",
|
||||||
keywords='whois',
|
"Operating System :: POSIX",
|
||||||
author='Larry Kim',
|
"Environment :: Console",
|
||||||
author_email='admin@relip.org',
|
"Programming Language :: Python",
|
||||||
url='http://github.com/relip/python-whois',
|
"Topic :: Internet",
|
||||||
license='MIT',
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||||
package_dir={},
|
],
|
||||||
packages=['whois'],
|
keywords='whois',
|
||||||
include_package_data=True,
|
author='Larry Kim',
|
||||||
zip_safe=False,
|
author_email='admin@relip.org',
|
||||||
install_requires=[
|
url='http://github.com/relip/python-whois',
|
||||||
# -*- Extra requirements: -*-
|
license='MIT',
|
||||||
],
|
packages=['whois'],
|
||||||
entry_points="""
|
|
||||||
# -*- Entry points: -*-
|
|
||||||
""",
|
|
||||||
)
|
)
|
||||||
|
|||||||
@ -6,6 +6,6 @@
|
|||||||
# \ \_\\ \_\\"\_\\ \_\ \ \_\
|
# \ \_\\ \_\\"\_\\ \_\ \ \_\
|
||||||
# \/_/ \/_/ \/_/ \/_/ \/_/
|
# \/_/ \/_/ \/_/ \/_/ \/_/
|
||||||
|
|
||||||
from whois import *
|
from whois import Whois as whois
|
||||||
from parser import *
|
from parser import Parser as parser
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user