Skip to content

Commit 68406c4

Browse files
author
odoo
committed
Finish the first chapter
1 parent e5787ed commit 68406c4

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

estate/__init__.py

Whitespace-only changes.

estate/__manifest__.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# -*- coding: utf-8 -*-
2+
# Part of Odoo. See LICENSE file for full copyright and licensing details.
3+
{
4+
'name': 'Real Estate Advertisement',
5+
'version': '1.0',
6+
'author': 'Odoo',
7+
'category': 'Sales/Real Estate',
8+
'sequence': 15,
9+
'summary': 'Manage property listings and real estate advertisements',
10+
'description': """
11+
Real Estate Advertisement Management
12+
====================================
13+
This module allows you to manage real estate properties, including:
14+
* Property listings with detailed information
15+
* Property types and tags
16+
* Property offers and negotiations
17+
* Sales tracking
18+
""",
19+
'depends': ['base'],
20+
'data': [
21+
],
22+
'installable': True,
23+
'application': True,
24+
'license': 'LGPL-3',
25+
}

0 commit comments

Comments
 (0)