forked from OCA/server-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
36 lines (35 loc) · 991 Bytes
/
__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
# Copyright 2015 LasLabs Inc.
# Copyright 2018 Modoolar <[email protected]>.
# Copyright 2019 initOS GmbH
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
{
'name': 'Password Security',
"summary": "Allow admin to set password security requirements.",
'version': '12.0.1.1.4',
'author':
"LasLabs, "
"Kaushal Prajapati, "
"Tecnativa, "
"initOS GmbH, "
"Odoo Community Association (OCA)",
'category': 'Base',
'depends': [
'auth_signup',
'auth_password_policy_signup',
],
'external_dependencies': {
'python': ['zxcvbn'],
},
"website": "https://github.com/OCA/server-auth",
"license": "LGPL-3",
"data": [
'views/password_security.xml',
'views/res_config_settings_views.xml',
'security/ir.model.access.csv',
'security/res_users_pass_history.xml',
],
"demo": [
'demo/res_users.xml',
],
'installable': True,
}