File: control

package info (click to toggle)
flexparser 0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 380 kB
  • sloc: python: 2,558; makefile: 4
file content (43 lines) | stat: -rw-r--r-- 1,491 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
Source: flexparser
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders:
 Antonio Valentino <antonio.valentino@tiscali.it>,
Build-Depends:
 debhelper-compat (= 13),
 dh-sequence-python3,
 pybuild-plugin-pyproject,
 python3-all,
 python3-pytest <!nocheck>,
 python3-pytest-mpl <!nocheck>,
 python3-pytest-subtests <!nocheck>,
 python3-setuptools,
 python3-setuptools-scm,
 python3-typing-extensions,
Standards-Version: 4.7.0
Testsuite: autopkgtest-pkg-pybuild
Rules-Requires-Root: no
Homepage: https://github.com/hgrecco/flexparser
Vcs-Browser: https://salsa.debian.org/python-team/packages/flexparser
Vcs-Git: https://salsa.debian.org/python-team/packages/flexparser.git
Description: Parsing using Python typing
 The idea behind flexparser is quite simple. To write a class for every
 type of content (called here `ParsedStatement`) one needs to parse.
 Each class have a `from_string` constructor.
 The `typing` module is used extensively to make the output structure
 easy to use and less error prone.
 .
 The fuse of frozen dataclass is not necessary but it convenient.
 Being a dataclass you get the init, str, repr, etc for free.
 Being frozen, sort of immutable, makes them easier to reason around.
 .
 The result is a collection of `ParsedStatement` or `ParsingError`.

Package: python3-flexparser
Architecture: all
Depends:
 ${misc:Depends},
 ${python3:Depends},
Description: ${source:Synopsis}
 ${source:Extended-Description}