__openerp__.py 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Cybrosys Technologies Pvt. Ltd.
  5. # Copyright (C) 2009-TODAY Cybrosys Technologies(<http://www.cybrosys.com>).
  6. # Author: Nilmar Shereef(<http://www.cybrosys.com>)
  7. # you can modify it under the terms of the GNU LESSER
  8. # GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
  9. #
  10. # It is forbidden to publish, distribute, sublicense, or sell copies
  11. # of the Software or modified copies of the Software.
  12. #
  13. # This program 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
  17. #
  18. # You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
  19. # GENERAL PUBLIC LICENSE (LGPL v3) along with this program.
  20. # If not, see <http://www.gnu.org/licenses/>.
  21. #
  22. ##############################################################################
  23. {
  24. 'name': "Automatic Developer Mode",
  25. 'summary': """Automatically Activate Developer Mode""",
  26. 'version': '0.3',
  27. 'author': 'Cybrosys Techno Solutions',
  28. 'website': "http://www.yourcompany.com",
  29. 'company': 'Cybrosys Techno Solutions',
  30. 'category': 'Tools',
  31. 'depends': ['base', 'web', 'base_setup'],
  32. 'data': [
  33. 'views/web_view.xml',
  34. ],
  35. 'images': ['static/description/banner.jpg'],
  36. 'installable': True,
  37. 'auto_install': False,
  38. }