Files
server-backend/base_external_dbsource_sqlite/__manifest__.py
Sergio Teruel f7251ddd5d [MIG] base_external_dbsource_sqlite: Migration to v12.0
[UPD] Update base_external_dbsource_sqlite.pot
2023-04-06 12:34:12 +02:00

26 lines
700 B
Python

# Copyright <2011> <Daniel Reis, Maxime Chambreuil, Savoir-faire Linux>
# Copyright 2016 LasLabs Inc.
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
{
'name': 'External Database Source - SQLite',
'version': '12.0.1.0.0',
'category': 'Tools',
'author': "Daniel Reis, "
"LasLabs, "
"Odoo Community Association (OCA)",
'website': 'https://github.com/OCA/server-tools',
'license': 'LGPL-3',
'depends': [
'base_external_dbsource',
],
'external_dependencies': {
'python': [
'sqlalchemy',
],
},
'demo': [
'demo/base_external_dbsource.xml',
],
'installable': True,
}