forked from OCA/connector-prestashop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
62 lines (61 loc) · 1.82 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# -*- coding: utf-8 -*-
# Copyright 2011-2013 Camptocamp
# Copyright 2011-2013 Akretion
# Copyright 2015 AvanzOSC
# Copyright 2015-2016 Tecnativa
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "PrestaShop-Odoo connector",
"version": "9.0.1.0.3",
"license": "AGPL-3",
"depends": [
"account",
"product",
"product_multi_category", # oca/product-attribute
"connector_ecommerce", # oca/connector-ecommerce
"product_multi_image", # oca/product-attribute
"purchase",
"product_variant_supplierinfo", # oca/product-variant
# TODO: perhaps not needed:
# "product_variant_cost_price", # oca/product-variant
],
"external_dependencies": {
'python': [
"html2text",
"prestapyt",
# tests dependencies
"freezegun",
"vcr",
"bs4",
],
},
"author": "Akretion,"
"Camptocamp,"
"AvanzOSC,"
"Tecnativa,"
"Odoo Community Association (OCA)",
"website": "https://github.com/OCA/connector-prestashop",
"category": "Connector",
'demo': [
'demo/backend.xml',
],
'data': [
'data/cron.xml',
'data/product_decimal_precision.xml',
'views/prestashop_model_view.xml',
'views/product_view.xml',
'views/product_category_view.xml',
'views/image_view.xml',
'views/delivery_view.xml',
'views/connector_prestashop_menu.xml',
'views/partner_view.xml',
'views/sale_view.xml',
'views/account_view.xml',
'views/stock_view.xml',
'security/ir.model.access.csv',
'security/prestashop_security.xml',
'data/ecommerce_data.xml',
],
'installable': False,
"application": True,
}