__manifest__.py 909 B

12345678910111213141516171819202122232425262728293031323334
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'In-App Purchases',
  5. 'category': 'Hidden/Tools',
  6. 'version': '1.1',
  7. 'summary': 'Basic models and helpers to support In-App purchases.',
  8. 'description': """
  9. This module provides standard tools (account model, context manager and helpers)
  10. to support In-App purchases inside Odoo. """,
  11. 'depends': [
  12. 'web',
  13. 'base_setup'
  14. ],
  15. 'data': [
  16. 'security/ir.model.access.csv',
  17. 'security/ir_rule.xml',
  18. 'views/iap_views.xml',
  19. 'views/res_config_settings.xml',
  20. ],
  21. 'auto_install': True,
  22. 'assets': {
  23. 'web.assets_backend': [
  24. 'iap/static/src/**/*.js',
  25. 'iap/static/src/**/*.xml',
  26. ],
  27. 'web.tests_assets': [
  28. 'iap/static/tests/**/*',
  29. ],
  30. },
  31. 'license': 'LGPL-3',
  32. }