summaryrefslogtreecommitdiff
path: root/addons/microsoft_calendar/__manifest__.py
diff options
context:
space:
mode:
Diffstat (limited to 'addons/microsoft_calendar/__manifest__.py')
-rw-r--r--addons/microsoft_calendar/__manifest__.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/addons/microsoft_calendar/__manifest__.py b/addons/microsoft_calendar/__manifest__.py
new file mode 100644
index 00000000..292ff86b
--- /dev/null
+++ b/addons/microsoft_calendar/__manifest__.py
@@ -0,0 +1,25 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+{
+ 'name': 'Outlook Calendar',
+ 'version': '1.0',
+ 'category': 'Productivity',
+ 'description': "",
+ 'depends': ['microsoft_account', 'calendar'],
+ 'qweb': ['static/src/xml/*.xml'],
+ 'data': [
+ 'data/microsoft_calendar_data.xml',
+ 'security/ir.model.access.csv',
+ 'wizard/reset_account_views.xml',
+ 'views/res_config_settings_views.xml',
+ 'views/res_users_views.xml',
+ 'views/microsoft_calendar_views.xml',
+ 'views/microsoft_calendar_templates.xml',
+ ],
+ 'demo': [],
+ 'installable': True,
+ 'auto_install': False,
+ 'post_init_hook': 'init_initiating_microsoft_uuid',
+ 'license': 'LGPL-3',
+}