__openerp__.py 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # -*- encoding: utf-8 -*-
  2. #################################################################################
  3. # #
  4. # product_genre for OpenERP #
  5. # Author: Victor Obrist #
  6. # contact: victor@paraguayenlaweb.com #
  7. # #
  8. # This program is free software: you can redistribute it and/or modify #
  9. # it under the terms of the GNU Affero General Public License as #
  10. # published by the Free Software Foundation, either version 3 of the #
  11. # License, or (at your option) any later version. #
  12. # #
  13. # This program is distributed in the hope that it will be useful, #
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of #
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
  16. # GNU Affero General Public License for more details. #
  17. # #
  18. # You should have received a copy of the GNU Affero General Public License #
  19. # along with this program. If not, see <http://www.gnu.org/licenses/>. #
  20. # #
  21. #################################################################################
  22. ###################################################################################
  23. # Product Genre is an Openobject module wich enable Genre for products retail #
  24. ###################################################################################
  25. {
  26. 'name': 'Generos de Productos',
  27. 'version': '2.0',
  28. 'category': 'Product',
  29. 'summary': 'Product Genre for retail',
  30. 'description': """
  31. Product Genre
  32. =============
  33. This module allows your user to add genre in product for retail, e.g. clothes
  34. End
  35. """,
  36. 'author': 'Victor Obrist / Eiru Software - Rodney Enciso Arias',
  37. 'website': 'http://www.paraguayenlaweb.com',
  38. 'depends': ['product'],
  39. 'data': [
  40. 'product_genre_view.xml',
  41. 'product_genre_data.xml'
  42. ],
  43. 'installable': True,
  44. }