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