__manifest__.py 392 B

12345678910111213141516
  1. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  2. {
  3. 'name': 'Test HTTP',
  4. 'version': '1.0',
  5. 'category': 'Hidden/Tests',
  6. 'description': """A module to test HTTP""",
  7. 'depends': ['base', 'web', 'web_tour'],
  8. 'installable': True,
  9. 'data': [
  10. 'data.xml',
  11. 'ir.model.access.csv',
  12. 'views.xml'
  13. ],
  14. 'license': 'LGPL-3',
  15. }