forked from kirchbergerknorr/mrg_stock_indicator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.py
executable file
·68 lines (50 loc) · 1.77 KB
/
info.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
63
64
65
66
67
68
# encoding: utf-8
# =============================================================================
# package info
# =============================================================================
NAME = 'symmetrics_module_stock_indicator'
TAGS = ('magento', 'symmetrics', 'module', 'stock', 'indicator', 'mrg')
LICENSE = 'AFL 3.0'
HOMEPAGE = 'http://www.symmetrics.de'
INSTALL_PATH = ''
# =============================================================================
# responsibilities
# =============================================================================
TEAM_LEADER = {
'Torsten Walluhn': '[email protected]',
}
MAINTAINER = {
'Andreas Timm': '[email protected]',
}
AUTHORS = {
'Andreas Timm': '[email protected]',
'Ngoc Anh Doan': '[email protected]',
'Torsten Walluhn': '[email protected]',
'Yauhen Yakimovich': '[email protected]',
'Eric Reiche': '[email protected]',
}
# =============================================================================
# additional infos
# =============================================================================
INFO = 'Ampel für Lagerbestand'
SUMMARY = '''
Zeigt eine 3-farbige Ampel. Die Einstellungen dafür findet man unter
Admin Panel/System/Configuration/Inventory/Stock Indicator.
'''
NOTES = '''
'''
# =============================================================================
# relations
# =============================================================================
REQUIRES = [
{'magento': '*', 'magento_enterprise': '*'},
]
EXCLUDES = {}
DEPENDS_ON_FILES = (
'app/code/core/Mage/Catalog/Block/Product/Abstract.php',
)
PEAR_KEY = ''
COMPATIBLE_WITH = {
'magento': ['1.4.0.0', '1.4.0.1', '1.4.1.0', '1.4.1.1'],
'magento_enterprise': ['1.7.0.0', '1.7.1.0', '1.8.0.0', '1.9.0.0'],
}