Package icaro-bloques :: Module creditos'
[hide private]
[frames] | no frames]

Source Code for Module icaro-bloques.creditos'

 1  #!/usr/bin/env python 
 2  # -*- coding: utf-8 -*- 
 3  import pygtk 
 4  # Creamos una clase que almacena la información del programa (después se usara) 
5 -class Info:
6 name = "icaro-bloques" 7 version = "beta" 8 copyright = "Copyright © 2012 Valentin Basel." 9 authors = ["Valentin Basel - valetinbasel@gmail.com"] 10 documenters = ["Neville A. Cross - yn1v@fedoraproject.org","Lucas Costas - puixima@gmail.com","Javier Castrillo - jcastrillo@educ.ar" ] 11 artists =["María Leandro - tatica@fedoraproject.org"] 12 translator ="todavia sin traductores" 13 website = "http://sistema-icaro.blogspot.com" 14 description = "Un front end para la generación de codigo C para las placas NP05" 15 license = "This program is free software; you can redistribute it and/or \ 16 modify it under the terms of the GNU General Public License as published by \ 17 the Free Software Foundation; either version 3 of the License, or (at your \ 18 option) any later version. \n\nThis program is distributed in the hope that \ 19 it will be useful, but WITHOUT ANY WARRANTY; without even the implied \ 20 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ 21 See the GNU General Public License for more details. \n\nYou should have \ 22 received a copy of the GNU General Public License along with this program; \ 23 if not, write to the Free Software Foundation, Inc., 51 Franklin Street, \ 24 Fifth Floor, Boston, MA 02110-1301, USA."
25