flectra/addons/google_drive/__manifest__.py
2018-01-16 03:05:52 -08:00

30 lines
1.0 KiB
Python

# -*- coding: utf-8 -*-
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
{
'name': 'Google Drive™ integration',
'author' : 'Odoo S.A',
'version': '0.2',
'category': 'Extra Tools',
'installable': True,
'auto_install': False,
'data': [
'security/ir.model.access.csv',
'data/google_drive_data.xml',
'views/google_drive_views.xml',
'views/google_drive_templates.xml',
'views/res_config_settings_views.xml',
],
'demo': [
'data/google_drive_demo.xml'
],
'depends': ['base_setup', 'google_account'],
'description': """
Integrate google document to Odoo record.
============================================
This module allows you to integrate google documents to any of your Odoo record quickly and easily using OAuth 2.0 for Installed Applications,
You can configure your google Authorization Code from Settings > Configuration > General Settings by clicking on "Generate Google Authorization Code"
"""
}