File: control

package info (click to toggle)
simplematch 1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 116 kB
  • sloc: python: 292; makefile: 3
file content (24 lines) | stat: -rw-r--r-- 947 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
Source: simplematch
Maintainer: Frédéric Bonnard <frediz@debian.org>
Section: python
Priority: optional
Build-Depends: debhelper-compat (= 13),
               dh-python,
               pybuild-plugin-pyproject,
               python3-all,
               python3-poetry-core
Rules-Requires-Root: no
Standards-Version: 4.6.1.0
Homepage: https://github.com/tfeldmann/simplematch
Vcs-Git: https://salsa.debian.org/debian/simplematch.git
Vcs-Browser: https://salsa.debian.org/debian/simplematch

Package: python3-simplematch
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}, ${shlibs:Depends}
Description: Minimal, super readable string pattern matching for Python
 simplematch aims to fill a gap between parsing with str.split() and
 regular expressions. It should be as simple as possible, fast and
 stable.
 The simplematch syntax is transpiled to regular expressions under the
 hood, so matching performance should be just as good.