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.

51 lines
1.3 KiB

5 years ago
5 years ago
5 years ago
  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': '12.0.0.0',
  10. 'depends': ['web', 'galicea_environment_checkup', 'galicea_base' ],
  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. 'security/init.xml',
  19. 'views/views.xml',
  20. 'views/templates.xml'
  21. ],
  22. 'environment_checkup': {
  23. 'dependencies': {
  24. 'python': [
  25. {
  26. 'name': 'jwcrypto',
  27. 'install': "pip install 'jwcrypto==0.5.0'"
  28. },
  29. {
  30. 'name': 'cryptography',
  31. 'version': '>=2.3',
  32. 'install': "pip install 'cryptography>=2.3'"
  33. }
  34. ]
  35. }
  36. },
  37. 'images': [
  38. 'static/description/images/master_screenshot.png',
  39. 'static/description/images/client_screenshot.png',
  40. 'static/description/images/login_screenshot.png',
  41. 'static/description/images/error_screenshot.png'
  42. ]
  43. }