bemade-addons/bemade_sethy_configuration/__manifest__.py

41 lines
1.3 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-23 15:06:46 -04:00
'summary': 'This module is developed by Bemade to instantiate the Sethy Odoo', # Provide a brief summary of the module
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',
'membership',
2023-10-23 15:06:46 -04:00
'partner_multi_relation',
2023-10-23 10:29:17 -04:00
'web_responsive'
],
'data': [
# Reference to XML, CSV, and other data files
'data/company_data.xml',
],
'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
""",
}