-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
49 lines (42 loc) · 1.31 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
49
# -*- coding: utf-8 -*-
{
'name': "Hostel",
'summary': """
Manage your hostel the easier and smarter way""",
'description': """
This business application enables hostel wardens to
-Identify and keep students records in the hostel
-Sort out students who have paid and those who have not paid
hostel residence fees
- manage hostel hygiene and maintenance
""",
'author': "Kaiza Ilomo",
'company': "Singo Africa Limited",
'website': "https://www.singo.africa",
'support': "Singo Africa Limited",
'maintainer': "Singo Africa Limited",
# Categories can be used to filter modules in modules listing
# Check https://github.com/odoo/odoo/blob/13.0/odoo/addons/base/data/ir_module_category_data.xml
# for the full list
'category': 'CRM',
'version': '13.0.1.0.0',
'sequence': 1,
'license': 'GPL-2',
# any module necessary for this one to work correctly
'depends': ['base'],
# always loaded
'data': [
'security/ir.model.access.csv',
#'views/templates.xml',
'views/views.xml',
#'rejea/views.xml',
],
# only loaded in demonstration mode
'demo': [
#'demo/demo.xml',
],
'images': [],
'application': True,
'installable': True,
'auto_install': False,
}