__manifest__.py 651 B

1234567891011121314151617181920212223242526
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Indian - Point of Sale',
  5. 'icon': '/l10n_in/static/description/icon.png',
  6. 'version': '1.0',
  7. 'description': """GST Point of Sale""",
  8. 'category': 'Accounting/Localizations/Point of Sale',
  9. 'depends': [
  10. 'l10n_in',
  11. 'point_of_sale'
  12. ],
  13. 'demo': [
  14. 'data/product_demo.xml',
  15. ],
  16. 'auto_install': True,
  17. 'assets': {
  18. 'point_of_sale.assets': [
  19. 'l10n_in_pos/static/src/js/**/*',
  20. 'l10n_in_pos/static/src/xml/**/*',
  21. ],
  22. },
  23. 'license': 'LGPL-3',
  24. }