mirror of
https://github.com/aimingmed/aimingmed-ai.git
synced 2026-01-19 13:23:23 +08:00
15 lines
402 B
Plaintext
15 lines
402 B
Plaintext
name: {{cookiecutter.step_name}}
|
|
python_env: python_env.yml
|
|
|
|
entry_points:
|
|
main:
|
|
parameters:
|
|
{% for arg_name in cookiecutter.parameters.split(",") %}
|
|
{{arg_name}}:
|
|
description: ## ADD DESCRIPTION
|
|
type: string
|
|
{% endfor %}
|
|
|
|
command: >-
|
|
python {{cookiecutter.script_name}} {% for n in cookiecutter.parameters.split(",") %} --{{n}} {{"{"}}{{n}}{{"}"}} {% endfor %}
|