__manifest__.py 566 B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Attachments List and Document Indexation',
  5. 'version': '2.1',
  6. 'category': 'Hidden/Tools',
  7. 'description': """
  8. Attachments list and document indexation
  9. ========================================
  10. * Show attachment on the top of the forms
  11. * Document Indexation: odt, pdf, xlsx, docx
  12. The `pdfminer.six` Python library has to be installed in order to index PDF files
  13. """,
  14. 'depends': ['web'],
  15. 'installable': True,
  16. 'license': 'LGPL-3',
  17. }