From bb2769a62e687cf9939d0604f8af44a3a384b75b Mon Sep 17 00:00:00 2001 From: makkalot Date: Sun, 6 Jul 2008 18:14:28 +0300 Subject: the scripts part fo commandline start and stop for the server --- funcweb/scripts/funcwebd | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 funcweb/scripts/funcwebd (limited to 'funcweb/scripts/funcwebd') 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')() + ) -- cgit