Files
report-print-send/printer_custom_options/__manifest__.py
qgigon f3be3b151c Added custom options module for printers by report
corrections for travis tests

fix for flake8 errors and travis tests

added new sections and rapleced maintainers

added USAGE section in readme + bug corection for update of printers

changed copyrights

updated manifest and fix for case of false ppd
2020-03-03 09:23:11 +01:00

28 lines
851 B
Python
Executable File

# Copyright 2019 Compassion
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
# pylint: disable=C8101
{
'name': 'Report to printer - Custom Printer Options',
'version': '11.0.0.0.0',
'category': 'Printer',
'author': 'Compassion CH, OCA',
'website': 'https://github.com/OCA/report-print-send',
'license': 'AGPL-3',
'depends': [
'base_report_to_printer' # oca_addons/report-print-send
],
'data': [
'views/printing_printer.xml',
'views/ir_actions_reports_xml_view.xml',
'security/ir.model.access.csv'
],
'external_dependencies': {
'python': ['cups'],
},
'installable': True,
'application': False,
'summary': "Adds the ability to check all printing options available "
"from a CUPS printer set them in the reports",
}