__openerp__.py 733 B

123456789101112131415161718192021222324252627282930
  1. # -*- coding: utf-8 -*-
  2. # Copyright 2017 Akretion (http://www.akretion.com).
  3. # @author Sébastien BEAU <sebastien.beau@akretion.com>
  4. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  5. {
  6. "name": "Product Variant Usability",
  7. "summary": "Improve the product variant usability",
  8. "version": "8.0.1.0.0",
  9. "category": "Uncategorized",
  10. "website": "www.akretion.com",
  11. "author": " Akretion",
  12. "license": "AGPL-3",
  13. "application": False,
  14. "installable": True,
  15. "external_dependencies": {
  16. "python": [],
  17. "bin": [],
  18. },
  19. "depends": [
  20. "product_variant_inactive",
  21. ],
  22. "data": [
  23. "views/product_view.xml",
  24. ],
  25. "demo": [
  26. ],
  27. "qweb": [
  28. ]
  29. }