__manifest__.py 421 B

123456789101112131415
  1. {
  2. 'name': 'library_member',
  3. 'description': 'Manage people who will be able to borrow books.',
  4. 'author': 'zzry',
  5. 'category': 'Services/Library',
  6. 'version': '0.1',
  7. 'depends': ['cat_app'],
  8. 'data': [
  9. 'views/book_view.xml',
  10. ],
  11. 'application': False,# 不是一个独立的应用程序
  12. 'installable': True,
  13. 'auto_install': False,
  14. 'license': 'LGPL-3', # 许可证类型
  15. }