-
-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy path__manifest__.py
30 lines (29 loc) · 1.01 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
# Author: Simone Orsi
# Copyright 2018 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Connector Importer",
"summary": """This module takes care of import sessions.""",
"version": "16.0.1.2.0",
"depends": ["connector", "queue_job"],
"author": "Camptocamp, Odoo Community Association (OCA)",
"license": "AGPL-3",
"category": "Connector",
"website": "https://github.com/OCA/connector-interfaces",
"maintainers": ["simahawk"],
"data": [
"data/ir_cron.xml",
"data/queue_job_function_data.xml",
"security/security.xml",
"security/ir.model.access.csv",
"views/backend_views.xml",
"views/recordset_views.xml",
"views/import_type_views.xml",
"views/source_views.xml",
"views/report_template.xml",
"views/docs_template.xml",
"views/source_config_template.xml",
"menuitems.xml",
],
"external_dependencies": {"python": ["chardet", "pytz", "pyyaml"]},
}