ce9781df51
Conflicts: CHANGES.rst isso/core.py isso/dispatch.py setup.py
15 lines
304 B
Python
15 lines
304 B
Python
# -*- encoding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import os
|
|
|
|
from isso import make_app
|
|
from isso import dist, config
|
|
|
|
application = make_app(
|
|
config.load(
|
|
os.path.join(dist.location, "share", "isso.conf"),
|
|
os.environ.get('ISSO_SETTINGS')),
|
|
multiprocessing=True)
|