17 lines
505 B
Django/Jinja
17 lines
505 B
Django/Jinja
# Mandatory library used in all odoo-openupgrade-wizard
|
|
# Note: As the openupgradelib is not allways up to date in pypi,
|
|
# we use the github master url.
|
|
git+https://github.com/OCA/openupgradelib@master#egg=openupgradelib
|
|
|
|
# Library used to run generate-module-analysis command
|
|
# dependencies of the module OCA/server-tools 'upgrade_analysis'
|
|
odoorpc
|
|
mako
|
|
|
|
{%- for python_lib, module_list in dependencies.items() %}
|
|
|
|
# Required by the module(s): {{ ','.join(module_list) }}
|
|
{{ python_lib }}
|
|
|
|
{%- endfor %}
|