forked from eyekraft/website_shops_map
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__manifest__.py
More file actions
55 lines (55 loc) · 1.43 KB
/
__manifest__.py
File metadata and controls
55 lines (55 loc) · 1.43 KB
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
# -*- coding: utf-8 -*-
{
'name': 'Shops Map',
'version': '1.1.20171129',
'category': 'Sale',
'summary': 'Shop model with map snippet',
'description': '''
Extends Warehouse model to store more shop data. Adds website snippet to show shops on the map.
Partner And Google Map Snippet compatible.
''',
'auto_install': False,
'application': True,
'author': 'Eyekraft Optical',
'website': 'https://eyekraft.ru',
'support': 'https://support.eyekraft.ru',
'depends': [
'sale',
'base_multi_image',
'base_geolocalize',
'base_action_rule',
'website',
'stock',
],
'data': [
'data/website_shops_map_data.xml',
'security/ir.model.access.csv',
'views/shop_property_view.xml',
'views/extend_module_view.xml',
'views/shop_api_user_view.xml',
'views/shop_map_cache_view.xml',
'views/period_of_time_view.xml',
'views/stock_view.xml',
'views/shop_list_config_view.xml',
'views/shop_list_snippet.xml',
'views/website_frontend_assets.xml',
'views/website_frontend_templates.xml',
],
'qweb': [
],
'js': [
],
'demo': [
],
'test': [
],
'license': 'LGPL-3',
'images': ['static/description/main.png'],
'update_xml': [],
'installable': True,
'private_category': False,
'external_dependencies': {
"python": ["geopy"],
},
'post_init_hook': 'fn_post_init_hook',
}