bemade-addons/caldav_sync/__manifest__.py

35 lines
1.2 KiB
Python
Raw Normal View History

2024-05-23 08:50:09 -04:00
# Bemade Inc.
#
# Copyright (C) 2023-June Bemade Inc. (<https://www.bemade.org>).
# Author: Marc Durepos (Contact : mdurepos@durpro.com)
#
# This program is under the terms of the GNU Lesser General Public License (LGPL-3)
# For details, visit https://www.gnu.org/licenses/lgpl-3.0.en.html
{
'name': 'CalDAV Synchronization',
'version': '17.0.0.5.3',
'license': 'LGPL-3',
'category': 'Productivity',
'summary': 'Synchronize Odoo Calendar Events with CalDAV Servers',
2024-05-23 08:50:09 -04:00
'description': """
This module allows Odoo to synchronize calendar events with CalDAV servers.
Users can synchronize their Odoo calendar with external applications like
Apple Calendar or Thunderbird using CalDAV protocol.
2024-05-23 08:50:09 -04:00
""",
'author': 'Bemade Inc.',
'website': 'https://www.bemade.org',
2024-05-23 08:50:09 -04:00
'depends': ['base', 'calendar'],
'external_dependencies': {
'python': ['caldav', 'icalendar', 'bs4'],
},
2024-05-27 16:43:11 -04:00
'images': ['static/description/images/main_screenshot.png'],
2024-05-23 08:50:09 -04:00
'data': [
'views/res_users_views.xml',
2024-05-23 08:50:09 -04:00
'data/caldav_sync_data.xml',
],
'installable': True,
'application': True,
'auto_install': False,
2024-05-23 08:50:09 -04:00
}