File: control

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 (45 lines) | stat: -rw-r--r-- 1,933 bytes parent folder | download
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
40
41
42
43
44
45
Source: python-taskipy
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Josenilson Ferreira da Silva <nilsonfsilva@hotmail.com>
Rules-Requires-Root: no
Build-Depends: debhelper-compat (= 13),
               dh-sequence-python3,
               python3-all,
               python3-colorama,
               python3-parameterized <!nocheck>,
               python3-poetry,
               python3-psutil,
               python3-pytest <!nocheck>,
               python3-pip <!nocheck>,
               python3-setuptools,
               time <!nocheck>
Standards-Version: 4.7.2
Homepage: https://github.com/taskipy/taskipy
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-taskipy
Vcs-Git: https://salsa.debian.org/python-team/packages/python-taskipy.git
Testsuite: autopkgtest-pkg-pybuild

Package: python3-taskipy
Architecture: all
Depends: ${misc:Depends},
         ${python3:Depends}
Description: tasks runner for Python projects
 The Taskipy project is a utility for automating tasks in Python projects,
 providing a simple way to define and execute various development tasks.
 Allows style checking (lint), or other operations in a single configuration
 file.
 .
 stands out for:
  - Allows you to execute commands such as poetry or test task in the terminal
    (if you are not using Poetry).
  - It also allows you to automatically execute, that is, actions
    before (pre_<task_name>) or after (post_<task_name>) a specific task,
    facilitating additional automations.
  - Supports the use of variables to reduce repetitions and improve
    maintainability.
  - Uses Python-like string formatting to flexibly configure tasks.
  - It can also be integrated as a development dependency via Poetry
    (poetry add --dev taskipy) or installed directly with pip (pip install
    taskipy). Compatible with projects that follow the pyproject.toml standard.