Last active
January 30, 2023 06:55
-
-
Save ppa-odoo/4f1bcdd1ec6d4751f32e72ca9046b585 to your computer and use it in GitHub Desktop.
Odoo __manifest__ File
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# Copyright <YEAR(S)> <AUTHOR(S)> | |
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | |
{ | |
"name": "Module name", | |
"summary": "Module summary", | |
"version": "11.0.1.0.0", | |
"development_status": "Alpha|Beta|Production/Stable|Mature", | |
"category": "Uncategorized", | |
"website": "https://github.com", | |
"author": "<AUTHOR(S)>, ppa-odoo", | |
"maintainers": [], | |
"license": "AGPL-3", | |
"application": False, | |
"installable": True, | |
"pre_init_hook": "pre_init_hook", | |
"post_init_hook": "post_init_hook", | |
"post_load": "post_load", | |
"uninstall_hook": "uninstall_hook", | |
"external_dependencies": { | |
"python": [], | |
"bin": [], | |
}, | |
"depends": [ | |
"base", | |
], | |
"data": [ | |
"security/security.xml", | |
"security/ir.model.access.csv", | |
"templates/assets.xml", | |
"views/report_name.xml", | |
"views/res_partner_view.xml", | |
"wizards/wizard_model_view.xml", | |
], | |
"demo": [ | |
"demo/assets.xml", | |
"demo/res_partner_demo.xml", | |
], | |
"qweb": [ | |
"static/src/xml/module_name.xml", | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment