Browse Source

增加许可证类型字段

Your Name 2 months ago
parent
commit
7ff67c332a
1 changed files with 2 additions and 1 deletions
  1. 2 1
      cat_app/__manifest__.py

+ 2 - 1
cat_app/__manifest__.py

@@ -16,7 +16,7 @@
     # Categories can be used to filter modules in modules listing
     # Check https://github.com/odoo/odoo/blob/15.0/odoo/addons/base/data/ir_module_category_data.xml
     # for the full list
-    'category': 'Uncategorized',
+    'category': 'Services/Library',
     'version': '0.1',
 
     # any module necessary for this one to work correctly
@@ -48,4 +48,5 @@
     #是否自动安装(在depends参数的模块都安装完成之后,自动安装本模块)
     'auto_install': False,
     'application': True,  # 如果是应用,设置为 True
+    'license': 'LGPL-3',  # 许可证类型
 }