bemade-addons/bemade_sethy_configuration/__manifest__.py

55 lines
1.8 KiB
Python
Raw Normal View History

2023-10-23 10:29:17 -04:00
# -*- coding: utf-8 -*-
{
'name': 'Bemade Sethy',
'version': '1.0',
'category': 'Specific Module Category', # Specify your module's category here
2023-10-30 17:39:45 -04:00
'summary': "This module is developed by Bemade to instantiate the Sethy's Odoo",
2023-10-23 10:29:17 -04:00
'author': 'Bemade',
'website': 'https://bemade.org',
'email': 'it@bemade.org',
'license': 'GPL-3',
'depends': [
# List of module dependencies
'base',
2023-10-24 08:13:48 -04:00
'contacts',
2023-10-23 10:29:17 -04:00
'crm',
2023-11-28 08:03:15 -05:00
'document_knowledge',
'document_page',
'document_page_approval',
'attachment_indexation',
2023-10-30 17:39:45 -04:00
'l10n_ca',
'membership_variable_period',
2023-11-28 08:03:15 -05:00
'membership_delegated_partner',
2023-10-30 17:39:45 -04:00
'partner_multi_relation',
'sale_management'
2023-10-23 10:29:17 -04:00
],
'data': [
# Reference to XML, CSV, and other data files
2023-10-30 17:39:45 -04:00
'data/membership_category_data.xml',
'data/product_template_data.xml',
'data/partner_category_data.xml',
'data/partner_relation_type_data.xml',
2023-10-23 10:29:17 -04:00
'data/company_data.xml',
2023-10-29 14:10:37 -04:00
'views/res_partner_relation_views.xml',
2023-11-28 08:03:15 -05:00
# 'views/membership_membership_line.xml',
'views/res_partner_views.xml',
2023-10-29 14:10:37 -04:00
2023-10-23 10:29:17 -04:00
],
'demo': [
# Reference to demo data files
],
'installable': True,
'auto_install': False,
'application': False, # Set to True if the module is an app
'description': """
Main module for Fondation Séthy
==================================
2023-10-23 15:06:46 -04:00
This module installs base components and will also set up default values according to the Fondation Séthy.
2023-10-23 10:29:17 -04:00
2023-10-23 15:06:46 -04:00
This will allow us to put all the customization here and add other modules from Oca or our repos if needed.
2023-10-23 10:29:17 -04:00
2023-10-23 15:06:46 -04:00
Only code specific to Fondation Sethy resides in this module, the reusable stuff should be put in other small dedicated modules elsewhere
2023-10-23 10:29:17 -04:00
""",
}