summaryrefslogtreecommitdiffstats
path: root/debian/control
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2022-09-16 09:10:28 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2022-09-16 09:10:28 +0000
commitda54d93c78560e0d5fe69272c7baa914f9ad58bd (patch)
treecb876c5f8c0a6544f170c09ec606c90e19cb53af /debian/control
parentAdding upstream version 2.2.0. (diff)
downloadcolorclass-debian/2.2.0-3.tar.xz
colorclass-debian/2.2.0-3.zip
Adding debian version 2.2.0-3.debian/2.2.0-3
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/control')
-rw-r--r--debian/control32
1 files changed, 32 insertions, 0 deletions
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..3ffecdd
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,32 @@
+Source: colorclass
+Priority: optional
+Maintainer: Debian Python Team <team+python@tracker.debian.org>
+Uploaders: Carl Suster <carl@contraflo.ws>
+Build-Depends:
+ debhelper-compat (= 13),
+ dh-python,
+ python3-all,
+ python3-docopt,
+ python3-pytest,
+ python3-setuptools,
+Standards-Version: 4.1.1
+Section: python
+Homepage: https://github.com/Robpol86/colorclass
+Vcs-Git: https://salsa.debian.org/python-team/packages/colorclass.git
+Vcs-Browser: https://salsa.debian.org/python-team/packages/colorclass
+Testsuite: autopkgtest-pkg-python
+
+Package: python3-colorclass
+Architecture: all
+Depends: ${python3:Depends}, ${misc: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.