forked from bizzappdev/oerp_project_git
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__openerp__.py
More file actions
28 lines (28 loc) · 709 Bytes
/
__openerp__.py
File metadata and controls
28 lines (28 loc) · 709 Bytes
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
# -*- coding: utf-8 -*-
{
'name': 'OpenERP git Integration',
'version': '1.0.0',
'category': '',
"sequence": 14,
'complexity': "easy",
'category': 'Hidden',
'description': """
OpenERP Git integration
""",
'author': 'Ruchir Shukla',
'website': 'www.bizzappdev.com',
'depends': ["project"],
'data': [
'project_view.xml',
'git_commit_view.xml',
'git_setting_view.xml',
'project_sequence.xml',
"security/ir.model.access.csv"
],
'external_dependencies': {
'python': ['git'],
},
'installable': True,
'auto_install': False,
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: