summaryrefslogtreecommitdiffstats
path: root/funcweb/scripts/funcwebd
blob: c51426ad090711060046b9484ac973a241c7e400 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/python
# EASY-INSTALL-ENTRY-SCRIPT: 'funcweb==0.1','console_scripts','start-funcweb'
__requires__ = 'funcweb==0.1'
import sys
from pkg_resources import load_entry_point

sys.exit(
   load_entry_point('funcweb==0.1', 'console_scripts', 'start-funcweb')()
   )