59 lines
1.9 KiB
Python
59 lines
1.9 KiB
Python
|
|
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'Bemade Sethy',
|
|
'version': '1.0',
|
|
'category': 'Specific Module Category', # Specify your module's category here
|
|
'summary': "This module is developed by Bemade to instantiate the Sethy's Odoo",
|
|
'author': 'Bemade',
|
|
'website': 'https://bemade.org',
|
|
'email': 'it@bemade.org',
|
|
'license': 'GPL-3',
|
|
'depends': [
|
|
# List of module dependencies
|
|
'base',
|
|
'contacts',
|
|
'crm',
|
|
'document_knowledge',
|
|
'document_page',
|
|
'document_page_approval',
|
|
'attachment_indexation',
|
|
'l10n_ca',
|
|
'membership_variable_period',
|
|
'membership_delegated_partner',
|
|
'partner_multi_relation',
|
|
'sale_management',
|
|
'base_automation'
|
|
],
|
|
'data': [
|
|
# Reference to XML, CSV, and other data files
|
|
'data/membership_category_data.xml',
|
|
'data/ir_cron_data.xml',
|
|
'data/product_template_data.xml',
|
|
'data/partner_category_data.xml',
|
|
'data/partner_relation_type_data.xml',
|
|
'data/company_data.xml',
|
|
'views/res_partner_relation_views.xml',
|
|
# 'views/membership_membership_line.xml',
|
|
'views/property_view.xml',
|
|
'views/res_partner_views.xml',
|
|
'security/ir.model.access.csv',
|
|
'wizard/transfer_property_wizard_views.xml'
|
|
],
|
|
'demo': [
|
|
# Reference to demo data files
|
|
],
|
|
'installable': True,
|
|
'auto_install': False,
|
|
'application': True,
|
|
'description': """
|
|
Main module for Fondation Séthy
|
|
==================================
|
|
This module installs base components and will also set up default values according to the Fondation Séthy.
|
|
|
|
This will allow us to put all the customization here and add other modules from Oca or our repos if needed.
|
|
|
|
Only code specific to Fondation Sethy resides in this module, the reusable stuff should be put in other small dedicated
|
|
modules elsewhere
|
|
""",
|
|
}
|