File: control

package info (click to toggle)
textual 2.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 55,056 kB
  • sloc: python: 85,423; lisp: 1,669; makefile: 101
file content (41 lines) | stat: -rw-r--r-- 1,654 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
Source: textual
Section: python
Priority: optional
Maintainer: Sandro Tosi <morph@debian.org>
Build-Depends: debhelper-compat (= 13),
               pybuild-plugin-pyproject,
               python3-all,
               python3-click <!nocheck>,
               python3-jinja2 <!nocheck>,
               python3-linkify-it <!nocheck>,
               python3-poetry,
               python3-pytest (>= 6.2.3) <!nocheck>,
               python3-pytest-asyncio <!nocheck>,
               python3-pytest-xdist <!nocheck>,
               python3-rich (>= 10.7.0) <!nocheck>,
               python3-syrupy <!nocheck>,
               python3-typing-extensions <!nocheck>,
Standards-Version: 4.6.2
Testsuite: autopkgtest-pkg-pybuild
Homepage: https://github.com/willmcgugan/textual
Vcs-Git: https://salsa.debian.org/morph/textual.git
Vcs-Browser: https://salsa.debian.org/morph/textual

Package: python3-textual
Architecture: all
Depends: ${misc:Depends},
         ${python3:Depends},
Recommends: ${python3:Recommends},
Suggests: ${python3:Suggests},
Description: TUI (Text User Interface) framework for Python inspired by modern web development
 Textual uses Rich to render rich text, so anything that Rich can render may be
 used in Textual.
 .
 Event handling in Textual is asynchronous (using async and await keywords).
 Widgets (UI components) can independently update and communicate with each
 other via message passing.
 .
 Textual has more in common with modern web development than it does with
 curses; layout is done with CSS grid and (soon) the theme may be customized
 with CSS. Other techniques are borrowed from JS frameworks such as Vue and
 React.