forked from xcgd/project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
26 lines (25 loc) · 908 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
# Copyright 2016-2017 Tecnativa - Pedro M. Baeza
# Copyright 2017 Tecnativa - Carlos Dauden
# Copyright 2021 Open Source Integrators - Daniel Reis
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Project timeline",
"summary": "Timeline view for projects",
"version": "15.0.1.1.0",
"category": "Project Management",
"website": "https://github.com/OCA/project",
"author": "Tecnativa, Onestein, Odoo Community Association (OCA)",
"license": "AGPL-3",
"depends": ["project", "web_timeline"],
"data": [
"views/project_project_view.xml",
"views/project_task_view.xml",
],
"demo": ["demo/project_project_demo.xml", "demo/project_task_demo.xml"],
"post_init_hook": "populate_date_start",
"assets": {
"web.assets_backend": [
"/project_timeline/static/src/scss/project_timeline.scss"
]
},
}