You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
2.4 KiB

  1. #==============================================================================
  2. # =
  3. # mis_builder module for OpenERP, Management Information System Builder
  4. # Copyright (C) 2014 ACSONE SA/NV (<http://acsone.eu>)
  5. # =
  6. # This file is a part of mis_builder
  7. # =
  8. # mis_builder is free software: you can redistribute it and/or modify
  9. # it under the terms of the GNU Affero General Public License v3 or later
  10. # as published by the Free Software Foundation, either version 3 of the
  11. # License, or (at your option) any later version.
  12. # =
  13. # mis_builder is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. # GNU Affero General Public License v3 or later for more details.
  17. # =
  18. # You should have received a copy of the GNU Affero General Public License
  19. # v3 or later along with this program.
  20. # If not, see <http://www.gnu.org/licenses/>.
  21. # =
  22. #==============================================================================
  23. {
  24. 'name': 'mis builder',
  25. 'version': '0.1',
  26. 'category': 'Reporting',
  27. 'description': """
  28. Management Information System Builder
  29. """,
  30. 'author': 'ACSONE SA/NV',
  31. 'website': 'http://acsone.eu',
  32. 'depends': ['account'],
  33. 'data': [
  34. 'wizard/mis_builder_dashboard.xml',
  35. 'views/mis_builder.xml',
  36. 'security/ir.model.access.csv',
  37. ],
  38. 'test': [
  39. ],
  40. 'demo': ['tests/mis.report.kpi.csv',
  41. 'tests/mis.report.query.csv',
  42. 'tests/mis.report.csv',
  43. 'tests/mis.report.instance.period.csv',
  44. 'tests/mis.report.instance.csv',
  45. ],
  46. 'js': [
  47. 'static/src/js/*.js'
  48. ],
  49. 'qweb': [
  50. 'static/src/xml/*.xml'
  51. ],
  52. 'css': [
  53. 'static/src/css/*.css'
  54. ],
  55. 'installable': True,
  56. 'application': True,
  57. 'auto_install': False,
  58. 'license': 'AGPL-3',
  59. }