-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__openerp__.py
executable file
·33 lines (32 loc) · 1.03 KB
/
__openerp__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
# The human-readable name of your module, displayed in the interface
'name' : "cinda_cmdb" ,
# A more extensive description
'description' : """
""" ,
'author': "Nantian",
'website': "http://nantian.com.cn",
# Which modules must be installed for this one to work
'depends' : ['base',
'mail',],
'category': 'cinda_cmdb',
# data files which are always installed
'data': [
'views/cmdb_view.xml',
'views/cmdb_menu.xml',
'views/cmdb_link.xml',
'views/manage.xml',
'security/security.xml',
'security/ir.model.access.csv',
# "security/cmdb_security.xml",
#"security/ir.model.access.csv",
],
# data files which are only installed in "demonstration mode"
'demo': ['demo.xml',
],
'application': True,
'installable': True,
'qweb':[
'static/src/xml/cmdb.xml',
],
}