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.

60 lines
1.8 KiB

7 years ago
6 years ago
7 years ago
  1. # -*- coding: utf-8 -*-
  2. ###################################################################################
  3. #
  4. # Copyright (C) 2017 MuK IT GmbH
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU Affero General Public License as
  8. # published by the Free Software Foundation, either version 3 of the
  9. # License, or (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU Affero General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU Affero General Public License
  17. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. #
  19. ###################################################################################
  20. {
  21. "name": "MuK Web Client",
  22. "summary": """Odoo Web Client Extension""",
  23. "description": """
  24. Extends the Odoo web client to include
  25. bus channels. Channels can be created to listen to Odoo bus
  26. notifications. To add a channel listener to the client just
  27. extend the web client and declare a new bus channel.
  28. """,
  29. "version": "11.0.1.0.1",
  30. "category": "Extra Tools",
  31. "license": "AGPL-3",
  32. "website": "http://www.mukit.at",
  33. "author": "MuK IT",
  34. "contributors": [
  35. "Mathias Markl <mathias.markl@mukit.at>",
  36. ],
  37. "depends": [
  38. "web",
  39. "bus",
  40. ],
  41. "data": [
  42. "template/assets.xml",
  43. ],
  44. "demo": [
  45. ],
  46. "qweb": [
  47. "static/src/xml/*.xml",
  48. ],
  49. "images": [
  50. 'static/description/banner.png'
  51. ],
  52. "external_dependencies": {
  53. "python": [],
  54. "bin": [],
  55. },
  56. "application": False,
  57. "installable": True,
  58. }