SaaSERP3/addons/ospp_base/__manifest__.py

48 lines
1.1 KiB
Python

# -*- coding: utf-8 -*-
{
'name': "OSPP BASE",
'summary': """
OSPP BASE""",
'description': """
OSPP BASE
""",
'author': "Zhiguo Yuan",
'website': "https://www.newbizpaas.cn",
'license': 'LGPL-3',
# Categories can be used to filter modules in modules listing
# Check https://github.com/odoo/odoo/blob/16.0/odoo/addons/base/data/ir_module_category_data.xml
# for the full list
'category': 'Hidden',
'version': '0.1',
# any module necessary for this one to work correctly
'depends': ['base'],
'installable': True,
'auto_install': True,
# always loaded
'data': [
# 'security/security_groups.xml',
# 'security/ir.model.access.csv',
# 'data/ir.mail_server.csv',
'views/views.xml',
'views/templates.xml',
],
'assets': {
'web.assets_backend': [
'ospp_base/static/src/js/web_title.js',
'ospp_base/static/src/js/user_menu.js'
],
},
# only loaded in demonstration mode
'demo': [
'demo/demo.xml',
],
}