Commit 87d8afbf by Gabriel Falcao

improving windows support. closes #218

parent b2e61d5c
......@@ -38,6 +38,13 @@ from lettuce.plugins import xunit_output
from lettuce import fs
from lettuce import exceptions
try:
from colorama import init as ms_windows_workaround
ms_windows_workaround()
except ImportError:
pass
__all__ = [
'after',
'before',
......
......@@ -34,6 +34,9 @@ required_modules = ['sure', 'fuzzywuzzy']
if sys.version_info[:2] < (2, 6):
required_modules.append('multiprocessing')
if os.name.lower() == 'nt':
required_modules.append('colorama')
setup(
name='lettuce',
version='0.2.0',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment