flectra/addons/hw_scale/__manifest__.py

22 lines
660 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2018-01-16 11:34:37 +01:00
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
{
'name': 'Weighing Scale Hardware Driver',
2018-01-16 12:05:52 +01:00
'author' : 'Odoo S.A',
'category': 'Point of Sale',
'sequence': 6,
'summary': 'Hardware Driver for Weighing Scales',
2018-01-16 11:34:37 +01:00
'website': 'https://flectrahq.com/page/point-of-sale',
'description': """
Weighing Scale Hardware Driver
================================
This module allows the point of sale to connect to a scale using a USB HSM Serial Scale Interface,
such as the Mettler Toledo Ariva.
""",
'depends': ['hw_proxy'],
'external_dependencies': {'python': ['serial']},
}