File: pyproject.toml

package info (click to toggle)
python-taskipy 1.14.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 436 kB
  • sloc: python: 1,262; makefile: 16; sh: 1
file content (14 lines) | stat: -rw-r--r-- 386 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[tool.poetry]
name = "taskipy"
description = "tasks runner for python projects"

[tool.taskipy.tasks]
echo_number = "echo the number is "
echo_named = "echo got a named argument "
echo_args_count = "bash count.sh"

pre_echo_on_prehook = "echo the number in prehook is "
echo_on_prehook = "echo ok"

echo_on_posthook = "echo ok"
post_echo_on_posthook = "echo the number in posthook is "