forked from OCA/calendar
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__manifest__.py
43 lines (42 loc) · 1.26 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
# Copyright 2021 Tecnativa - Jairo Llopis
# Copyright 2022 Tecnativa - Pedro M. Baeza
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Resource booking",
"summary": "Manage appointments and resource booking",
"version": "14.0.1.3.4",
"development_status": "Production/Stable",
"category": "Appointments",
"website": "https://github.com/OCA/calendar",
"author": "Tecnativa, Odoo Community Association (OCA)",
"maintainers": ["pedrobaeza"],
"license": "AGPL-3",
"application": True,
"installable": True,
"external_dependencies": {
"python": [
# Used implicitly
"cssselect",
],
},
"depends": [
"calendar",
"mail",
"portal",
"resource",
"web_calendar_slot_duration",
],
"data": [
"data/mail.xml",
"security/resource_booking_security.xml",
"security/ir.model.access.csv",
"templates/assets.xml",
"templates/portal.xml",
"views/calendar_event_views.xml",
"views/resource_booking_combination_views.xml",
"views/resource_booking_type_views.xml",
"views/resource_booking_views.xml",
"views/menus.xml",
],
"demo": ["demo/res_users_demo.xml"],
}