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.

49 lines
1.2 KiB

  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "Galicea OpenID Connect Provider",
  4. 'summary': """OpenID Connect Provider and OAuth2 resource server""",
  5. 'author': "Maciej Wawro",
  6. 'maintainer': "Galicea",
  7. 'website': "http://galicea.pl",
  8. 'category': 'Technical Settings',
  9. 'version': '10.0.1.0',
  10. 'depends': ['web', 'galicea_environment_checkup'],
  11. 'external_dependencies': {
  12. 'python': ['jwcrypto', 'cryptography']
  13. },
  14. 'data': [
  15. 'security/security.xml',
  16. 'security/ir.model.access.csv',
  17. 'security/init.yml',
  18. 'views/views.xml',
  19. 'views/templates.xml'
  20. ],
  21. 'environment_checkup': {
  22. 'dependencies': {
  23. 'python': [
  24. {
  25. 'name': 'jwcrypto',
  26. 'install': "pip install 'jwcrypto==0.5.0'"
  27. },
  28. {
  29. 'name': 'cryptography',
  30. 'version': '>=2.3',
  31. 'install': "pip install 'cryptography>=2.3'"
  32. }
  33. ]
  34. }
  35. },
  36. 'images': [
  37. 'static/description/images/custom_screenshot.png',
  38. 'static/description/images/dependencies_screenshot.png'
  39. ]
  40. }