mirror of
https://github.com/wassname/openshift-celery-cartridge.git
synced 2026-07-05 17:30:11 +08:00
13 lines
489 B
Python
Executable File
13 lines
489 B
Python
Executable File
#!/usr/bin/env python2.7
|
|
|
|
import os; activate_this=os.path.join(os.path.dirname('%svirtenv/bin/' % os.getenv('OPENSHIFT_PYTHON_DIR')), 'activate_this.py'); execfile(activate_this, dict(__file__=activate_this)); del os, activate_this
|
|
|
|
# EASY-INSTALL-ENTRY-SCRIPT: 'celery==3.0.24','console_scripts','celeryd-multi'
|
|
__requires__ = 'celery==3.0.24'
|
|
import sys
|
|
from pkg_resources import load_entry_point
|
|
|
|
sys.exit(
|
|
load_entry_point('celery==3.0.24', 'console_scripts', 'celeryd-multi')()
|
|
)
|