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.

31 lines
778 B

  1. # -*- coding: utf-8 -*-
  2. # © 2016 Therp BV <http://therp.nl>
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  4. {
  5. "name": "Let's encrypt",
  6. "version": "8.0.1.0.0",
  7. "author": "Therp BV,"
  8. "Tecnativa,"
  9. "Odoo Community Association (OCA)",
  10. "license": "AGPL-3",
  11. "category": "Hidden/Dependency",
  12. "summary": "Request SSL certificates from letsencrypt.org",
  13. "depends": [
  14. 'base',
  15. ],
  16. "data": [
  17. "data/ir_config_parameter.xml",
  18. "data/ir_cron.xml",
  19. ],
  20. "post_init_hook": 'post_init_hook',
  21. "installable": True,
  22. "external_dependencies": {
  23. 'bin': [
  24. 'openssl',
  25. ],
  26. 'python': [
  27. 'acme_tiny',
  28. 'IPy',
  29. ],
  30. },
  31. }