27 lines
		
	
	
		
			641 B
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			641 B
		
	
	
	
		
			Python
		
	
	
# -*- coding: utf-8 -*-
 | 
						|
# Copyright 2018-Today datenpol gmbh(<http://www.datenpol.at>)
 | 
						|
# License OPL-1 or later (https://www.odoo.com/documentation/user/11.0/legal/licenses/licenses.html#licenses).
 | 
						|
 | 
						|
 | 
						|
# noinspection PyStatementEffect
 | 
						|
{
 | 
						|
    'name': 'Dp Show Company',
 | 
						|
    'version': '11.0.1.0.0',
 | 
						|
    'license': 'OPL-1',
 | 
						|
    'author': 'datenpol gmbh',
 | 
						|
    'website': 'https://www.datenpol.at',
 | 
						|
    'depends': [
 | 
						|
        'web',
 | 
						|
        'web_responsive',
 | 
						|
    ],
 | 
						|
    'data': [
 | 
						|
        'views/assets.xml',
 | 
						|
        'views/web.xml',
 | 
						|
    ],
 | 
						|
    "qweb": [
 | 
						|
        'static/src/xml/base.xml',
 | 
						|
    ],
 | 
						|
    'installable': True,
 | 
						|
    'auto_install': False,
 | 
						|
}
 |