From b7fae3c9a31cd55b51334843053c74e0221e4b8b Mon Sep 17 00:00:00 2001 From: Steve Salevan Date: Fri, 27 Jun 2008 14:51:21 -0400 Subject: Adding in a command-line map building tool, adjusting spec and setup.py to account for new PyYAML dependency and new script --- scripts/func-build-map | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 scripts/func-build-map (limited to 'scripts') diff --git a/scripts/func-build-map b/scripts/func-build-map new file mode 100755 index 0000000..734929a --- /dev/null +++ b/scripts/func-build-map @@ -0,0 +1,8 @@ +#!/usr/bin/python + +import sys +import distutils.sysconfig +import func.overlord.mapper as mapper + +mapper = mapper.MapperTool() +mapper.run(sys.argv) -- cgit