-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path__manifest__.py
executable file
·39 lines (39 loc) · 1.11 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
{
"name": "monero-rpc-odoo",
"summary": "Allows you to accept Monero Payments",
"author": "Monero Integrations",
"website": "https://monerointegrations.com/",
# Categories can be used to filter modules in modules listing
# for the full list
"category": "Accounting",
"version": "14.0.1.0.2",
# any module necessary for this one to work correctly
"depends": [
"website_sale",
"website_payment",
"website",
"payment_transfer",
"payment",
"base_setup",
"web",
"queue_job",
],
"external_dependencies": {"python": ["monero"]},
# always loaded
"data": [
"views/monero_acquirer_form.xml",
"views/monero_payment_confirmation.xml",
"data/currency.xml",
"data/monero_xmr_payment_acquirer.xml",
"data/payment_icon_data.xml",
"data/queue.xml",
],
# only loaded in demonstration mode
# TODO add demo data
"demo": [
"demo/demo.xml",
],
"installable": True,
"application": True,
"classifiers": ["License :: OSI Approved :: MIT License"],
}