Files
Odoo-Tutorial/awesome_owl/__manifest__.py
T
2025-02-24 12:20:11 +07:00

42 lines
1.3 KiB
Python

# -*- coding: utf-8 -*-
{
'name': "Awesome Owl",
'summary': """
Starting module for "Discover the JS framework, chapter 1: Owl components"
""",
'description': """
Starting module for "Discover the JS framework, chapter 1: Owl components"
""",
'author': "Odoo",
'website': "https://www.odoo.com",
# Categories can be used to filter modules in modules listing
# Check https://github.com/odoo/odoo/blob/15.0/odoo/addons/base/data/ir_module_category_data.xml
# for the full list
'category': 'Tutorials',
'version': '0.1',
# any module necessary for this one to work correctly
'depends': ['base', 'web'],
'application': True,
'installable': True,
'data': [
'views/templates.xml',
],
'assets': {
'awesome_owl.assets_playground': [
('include', 'web._assets_helpers'),
'web/static/src/scss/pre_variables.scss',
'web/static/lib/bootstrap/scss/_variables.scss',
'web/static/lib/bootstrap/scss/_maps.scss',
('include', 'web._assets_bootstrap'),
('include', 'web._assets_core'),
'web/static/src/libs/fontawesome/css/font-awesome.css',
'awesome_owl/static/src/**/*',
],
},
'license': 'AGPL-3'
}