summaryrefslogtreecommitdiff
path: root/addons/iap/__manifest__.py
diff options
context:
space:
mode:
Diffstat (limited to 'addons/iap/__manifest__.py')
-rw-r--r--addons/iap/__manifest__.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/addons/iap/__manifest__.py b/addons/iap/__manifest__.py
new file mode 100644
index 00000000..2fb9c9f0
--- /dev/null
+++ b/addons/iap/__manifest__.py
@@ -0,0 +1,28 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+{
+ 'name': 'In-App Purchases',
+ 'category': 'Hidden/Tools',
+ 'version': '1.1',
+ 'summary': 'Basic models and helpers to support In-App purchases.',
+ 'description': """
+This module provides standard tools (account model, context manager and helpers)
+to support In-App purchases inside Odoo. """,
+ 'depends': [
+ 'web',
+ 'base_setup'
+ ],
+ 'data': [
+ 'security/ir.model.access.csv',
+ 'security/ir_rule.xml',
+ 'views/assets.xml',
+ 'views/iap_views.xml',
+ 'views/res_config_settings.xml',
+ ],
+ 'qweb': [
+ 'static/src/xml/iap_templates.xml',
+ ],
+ 'auto_install': True,
+ 'license': 'LGPL-3',
+}