odoo/addons/fleet/__openerp__.py

18 lines
367 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
{
'name' : 'Car Management',
'version' : '0.1',
'depends' : [
'base',
'hr',
],
'author' : 'OpenERP S.A.',
'description' : """
I'm a good module and I will handle the cars of your company !
""",
'installable' : True,
'application' : True,
'data' : [
'hr_car_view.xml',
]
}