4 # Copyright 2008 Develer S.r.l. (http://www.develer.com/)
9 # Author: Lorenzo Berni <duplo@develer.com>
14 class BProject(object):
16 Simple class for store and retrieve project informations.
22 def setInfo(self, key, value):
24 Store the given value with the name key.
26 self.infos[key] = value
30 Retrieve the value associated with the name key.
33 return copy.deepcopy(self.infos[key])
37 return repr(self.infos)