summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorSteve Salevan <ssalevan@marillion.rdu.redhat.com>2008-06-27 14:51:21 -0400
committerSteve Salevan <ssalevan@marillion.rdu.redhat.com>2008-06-27 14:51:21 -0400
commitb7fae3c9a31cd55b51334843053c74e0221e4b8b (patch)
treeb7ab27b26b27cd70dc2bf2ce410630e026da4b4c /scripts
parent466e8afe8444ce68a1e81ad70d5fcf1d2cf32316 (diff)
downloadfunc-b7fae3c9a31cd55b51334843053c74e0221e4b8b.tar.gz
func-b7fae3c9a31cd55b51334843053c74e0221e4b8b.tar.xz
func-b7fae3c9a31cd55b51334843053c74e0221e4b8b.zip
Adding in a command-line map building tool,
adjusting spec and setup.py to account for new PyYAML dependency and new script
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/func-build-map8
1 files changed, 8 insertions, 0 deletions
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)