uom/__manifest__.py

22 lines
586 B
Python
Raw Normal View History

2024-05-03 12:46:43 +03:00
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Units of measure',
'version': '1.0',
'category': 'Sales/Sales',
'depends': ['base'],
'description': """
This is the base module for managing Units of measure.
========================================================================
""",
'data': [
'data/uom_data.xml',
'security/uom_security.xml',
'security/ir.model.access.csv',
'views/uom_uom_views.xml',
],
'installable': True,
'license': 'LGPL-3',
}