-
-
Notifications
You must be signed in to change notification settings - Fork 244
/
__manifest__.py
48 lines (47 loc) · 1.59 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
47
48
# Copyright (C) 2009 - TODAY Renato Lima - Akretion
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
{
"name": "Brazilian Localization Base",
"summary": "Customization of base module for implementations in Brazil.",
"category": "Localization",
"license": "AGPL-3",
"author": "Akretion,Odoo Community Association (OCA)",
"maintainers": ["renatonlima", "rvalyi"],
"website": "https://github.com/OCA/l10n-brazil",
"version": "14.0.3.16.1",
"depends": ["base", "base_setup", "base_address_city", "base_address_extended"],
"data": [
"security/ir.model.access.csv",
"data/res.city.csv",
"data/res.country.state.csv",
"data/res.bank.csv",
"views/webclient_templates.xml",
"views/res_partner_address_view.xml",
"views/res_config_settings_view.xml",
"data/res_country_data.xml",
"views/res_city_view.xml",
"views/res_bank_view.xml",
"views/res_partner_bank_view.xml",
"views/res_country_view.xml",
"views/res_partner_view.xml",
"views/res_company_view.xml",
],
"demo": [
"demo/l10n_br_base_demo.xml",
"demo/res_partner_demo.xml",
"demo/res_company_demo.xml",
"demo/res_users_demo.xml",
"demo/res_partner_pix_demo.xml",
],
"installable": True,
"pre_init_hook": "pre_init_hook",
"development_status": "Mature",
"external_dependencies": {
"python": [
"num2words",
"erpbrasil.base>=2.3.0",
"phonenumbers",
"email-validator",
]
},
}