1from distutils.core import setup 2 3setup( 4 name="pysystemmgr", 5 version="1.0", 6 packages=["obmc.system"], 7 scripts=["system_manager.py"], 8) 9