forked from OCA/interface-github
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__openerp__.py
36 lines (36 loc) · 1.19 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
34
35
36
# -*- coding: utf-8 -*-
# Copyright (C) 2016-Today: Odoo Community Association (OCA)
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Github Connector - Odoo',
'summary': 'Analyze Odoo modules information from Github repositories',
'version': '10.0.1.0.0',
'category': 'Connector',
'license': 'AGPL-3',
'author': 'Odoo Community Association (OCA), Sylvain LE GAL, GRAP',
'depends': [
'github_connector',
],
'data': [
'security/ir.model.access.csv',
'data/function.xml',
'views/view_reporting.xml',
'views/action.xml',
'views/menu.xml',
'views/view_odoo_license.xml',
'views/view_odoo_author.xml',
'views/view_odoo_lib_bin.xml',
'views/view_odoo_lib_python.xml',
'views/view_odoo_module.xml',
'views/view_odoo_module_version.xml',
'views/view_github_organization.xml',
'views/view_github_repository.xml',
'views/view_github_repository_branch.xml',
'data/odoo_licence.xml',
],
'demo': [
'demo/github_organization.xml',
],
'installable': True,
}