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 (11 lines) | stat: -rw-r--r-- 387 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
[tool.poetry]
name = "taskipy"
description = "tasks runner for python projects"

[tool.taskipy.settings]
cwd = "./global_cwd"

[tool.taskipy.tasks]
pwdglobalcwd = { cmd = "python -c \"import os; print(os.getcwd())\"" }
pwdpyproject = { cmd = "python -c \"import os; print(os.getcwd())\"", cwd = "." }
pwdsub = { cmd = "python -c \"import os; print(os.getcwd())\"", cwd = "./subfolder" }