forked from OCA/interface-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
48 lines (48 loc) · 1.87 KB
/
__manifest__.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
37
38
39
40
41
42
43
44
45
46
47
48
# Copyright (C) 2016-Today: Odoo Community Association (OCA)
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# @author: Sébastien BEAU <[email protected]>
# Copyright 2019 Tecnativa - Cristina Martin R.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Github Connector",
"summary": "Synchronize information from Github repositories",
"version": "14.0.2.1.0",
"category": "Connector",
"license": "AGPL-3",
"author": "Odoo Community Association (OCA), GRAP, Akretion, Tecnativa",
"website": "https://github.com/OCA/interface-github",
"depends": ["base", "web"],
"data": [
"security/ir_model_category.xml",
"security/res_groups.xml",
"security/ir.model.access.csv",
"data/ir_config_parameter.xml",
"data/ir_cron.xml",
"wizards/view_wizard_load_github_model.xml",
"views/view_reporting.xml",
"views/view_github_team_partner.xml",
"views/view_github_team_repository.xml",
"views/action.xml",
"views/view_res_partner.xml",
"views/view_github_analysis_rule.xml",
"views/view_github_analysis_rule_group.xml",
"views/view_github_organization.xml",
"views/view_github_repository.xml",
"views/view_github_repository_branch.xml",
"views/view_github_team.xml",
"views/menu.xml",
"report/github_repository_branch_rule_info_report_view.xml",
"wizards/view_wizard_create_team.xml",
"wizards/view_wizard_create_repository.xml",
],
"demo": [
"demo/github_analysis_rule_group_demo.xml",
"demo/github_analysis_rule_demo.xml",
"demo/github_organization.xml",
"demo/github_organization_serie.xml",
],
"installable": True,
"external_dependencies": {
"python": ["GitPython", "pygount", "pathspec", "PyGithub"]
},
}