-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
46 lines (45 loc) · 1.88 KB
/
__manifest__.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
# -*- coding: utf-8 -*-
#############################################################################
#
# Cybrosys Technologies Pvt. Ltd.
#
# Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
#
# You can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
#
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# (LGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
{
'name': "Automatic Database Backup To Local Server, Remote Server, Google Drive And Dropbox",
'version': '15.0.2.0.1',
'summary': """Generate automatic backup of databases and store to local, google drive, dropbox or remote server""",
'description': """This module has been developed for creating database backups automatically
and store it to the different locations.""",
'author': "Cybrosys Techno Solutions",
'website': "https://www.cybrosys.com",
'company': 'Cybrosys Techno Solutions',
'maintainer': 'Cybrosys Techno Solutions',
'category': 'Tools',
'depends': ['base', 'mail', 'google_drive'],
'data': [
'security/ir.model.access.csv',
'data/data.xml',
'views/db_backup_configure_views.xml',
'wizard/dropbox_authcode_wizard_views.xml'
],
'license': 'LGPL-3',
'images': ['static/description/banner.gif'],
'installable': True,
'auto_install': False,
'application': False,
}