2017-04-30 18:54:35 +00:00
|
|
|
from gevent import monkey
|
2017-03-27 21:09:36 +00:00
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import cme
|
|
|
|
|
2017-10-25 02:08:19 +00:00
|
|
|
monkey.patch_all()
|
|
|
|
|
|
|
|
thirdparty_modules = os.path.join(os.path.dirname(cme.__file__), 'thirdparty')
|
|
|
|
|
|
|
|
for module in os.listdir(thirdparty_modules):
|
|
|
|
sys.path.insert(0, os.path.join(thirdparty_modules, module))
|