This repository has been archived on 2021-03-01. You can view files and clone it, but cannot push or open issues or pull requests.
kaneton/test/packages/ktp/manifest.py
Mercier Pierre-Olivier fee4dd4e6d Initial snapshot
2013-02-11 22:04:30 +01:00

35 lines
735 B
Python

#
# ---------- header -----------------------------------------------------------
#
# project kaneton
#
# license kaneton
#
# file /home/mycure/KANETON-TEST-SYSTEM/packages/ktp/manifest.py
#
# created julien quintard [wed oct 27 10:53:58 2010]
# updated julien quintard [tue dec 7 13:41:02 2010]
#
#
# ---------- packages ---------------------------------------------------------
#
import yaml
#
# ---------- definitions ------------------------------------------------------
#
Extension = ".mnf"
#
# ---------- functions --------------------------------------------------------
#
#
# this function loads a manifest.
#
def Load(path):
return yaml.load(file(path, 'r'))