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
  
     | 
    
      Rules-Requires-Root: no
Standards-Version: 4.5.1
Build-Depends:
 debhelper-compat (= 13),
 dh-sequence-python3,
 python3-all-dev,
 python3-setuptools,
Testsuite: autopkgtest-pkg-python
Source: python-pyahocorasick
Priority: optional
Section: python
Maintainer: Jelmer Vernooij <jelmer@debian.org>
Homepage: https://github.com/WojciechMula/pyahocorasick
Vcs-Git: https://salsa.debian.org/python-team/packages/pyahocorasick.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/pyahocorasick
Package: python3-ahocorasick
Depends: ${python3:Depends}, ${misc:Depends}, ${shlibs:Depends}
Architecture: any
Description: Python module implementing the aho-corasick algorithm
 A fast and memory efficient library for exact or approximate multi-pattern
 string search meaning that you can find multiple key strings occurrences at
 once in some input text.  The library provides an `ahocorasick` Python module
 that can be used as a plain dict-like Trie or convert a Trie to an automaton
 for efficient Aho-Corasick search.
 
     |