diff options
Diffstat (limited to 'funcweb/scripts/funcwebd')
| -rw-r--r-- | funcweb/scripts/funcwebd | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/funcweb/scripts/funcwebd b/funcweb/scripts/funcwebd new file mode 100644 index 0000000..c51426a --- /dev/null +++ b/funcweb/scripts/funcwebd @@ -0,0 +1,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')() + ) |
