File: control

package info (click to toggle)
python-collections-extended 2.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 492 kB
  • sloc: python: 2,917; makefile: 59
file content (39 lines) | stat: -rw-r--r-- 1,390 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
Source: python-collections-extended
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders:
 Andrius Merkys <merkys@debian.org>,
Rules-Requires-Root: no
Build-Depends:
 debhelper-compat (= 13),
 dh-sequence-python3,
 pybuild-plugin-pyproject,
 python3-all,
 python3-hypothesis <!nocheck>,
 python3-poetry-core,
 python3-pytest <!nocheck>,
 python3-setuptools,
Testsuite: autopkgtest-pkg-pybuild
Standards-Version: 4.6.2
Homepage: https://github.com/mlenzen/collections-extended
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-collections-extended
Vcs-Git: https://salsa.debian.org/python-team/packages/python-collections-extended.git

Package: python3-collections-extended
Architecture: all
Depends:
 ${misc:Depends},
 ${python3:Depends},
Description: Extra Python Collections - bags, setlists, RangeMap and IndexedDict
 collections_extended is a pure Python module with no dependencies providing:
 .
  * a bag class, also known as multiset,
  * a setlist class, which is a unique list or ordered set,
  * a bijection class, RangeMap which is a mapping from ranges to values,
  * a IndexedDict class, which is an ordered mapping whose elements can be
    accessed using index, in addition to key.
 .
 There are also frozen (hashable) varieties of bags and setlists.
 .
 This package installs the library for Python 3.