summaryrefslogtreecommitdiffstats
path: root/debian/control
blob: d24462f6dc85d8d99164b40983d74773d80215e2 (plain)
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
Source: colorclass
Section: python
Priority: optional
Maintainer: Daniel Baumann <daniel.baumann@progress-linux.org>
Build-Depends:
 debhelper-compat (= 13),
 dh-python,
 pybuild-plugin-pyproject,
 python3-all,
 python3-docopt,
 python3-poetry,
 python3-pytest,
 python3-setuptools,
Rules-Requires-Root: no
Standards-Version: 4.6.1
Homepage: https://github.com/matthewdeanmartin/colorclass
Vcs-Browser: https://git.progress-linux.org/users/daniel.baumann/debian/packages/colorclass
Vcs-Git: https://git.progress-linux.org/users/daniel.baumann/debian/packages/colorclass
Testsuite: autopkgtest-pkg-python

Package: python3-colorclass
Architecture: all
Depends:
 ${misc:Depends},
 ${python3:Depends},
Description: ANSI color text library for Python
 Yet another ANSI color text library for Python. Provides "auto colors" for
 dark/light terminals. Works on Linux, OS X, and Windows.
 .
 In Python 2 this library subclasses unicode, while on Python 3 it subclasses
 str. Different colors are chosen using curly-bracket tags, such as
 {red}{/red}. For a list of available colors, call colorclass.list_tags().
 Auto colors are toggled by calling set_light_background() and
 set_dark_background().
 .
 This package provides the Python 3 module.