forked from itpp-labs/misc-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
29 lines (29 loc) · 989 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
{
"name": """Time Tracker""",
"summary": """Adds Start/Stop buttons to task work lines. Allows to see statistics on Calendar, Graph, Tree views and more""",
"category": "Project",
"images": ["images/timelog.png"],
"version": "13.0.1.0.0",
"application": False,
"author": "IT-Projects LLC",
"website": "https://www.it-projects.info/",
"license": "Other OSI approved licence", # MIT
"price": 195.00,
"currency": "EUR",
"depends": ["hr_timesheet", "base_automation"],
"external_dependencies": {"python": [], "bin": []},
"data": [
"security/ir.model.access.csv",
"views/project_timelog_views.xml",
"views/res_config_view.xml",
"views/project_timelog_templates.xml",
"data/project_timelog_data.xml",
],
"qweb": ["static/src/xml/menu.xml"],
"demo": [],
"post_load": None,
"pre_init_hook": None,
"post_init_hook": None,
"auto_install": False,
"installable": False,
}