name = 'COMKit'
version = (1, 1, 1)
docs = [
{'name': "User's Guide", 'file': 'UsersGuide.html'},
]
status = 'stable'
synopsis = """COMKit allows COM objects to be used in the multi-threaded versions of WebKit. Especially useful for data access using ActiveX Data Objects. Requires Windows and Python win32 extensions."""
requiredPyVersion = (2, 4, 0)
requiredOpSys = 'nt'
requiredSoftware = [
{'name': 'pythoncom'},
]
def willRunFunc():
try:
import imp
for soft in requiredSoftware:
imp.find_module(soft['name'])
except ImportError:
success = False
else:
success = True
if not success:
return 'The pythoncom module (pywin32 library) is required to use COMKit.'