File: control

package info (click to toggle)
python-box 3.4.6-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 344 kB
  • sloc: python: 1,727; makefile: 4
file content (34 lines) | stat: -rw-r--r-- 1,131 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
Source: python-box
Section: python
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders:
 Michal Arbet <michal.arbet@ultimum.io>,
Build-Depends:
 debhelper-compat (= 12),
 dh-python,
 python3-all,
 python3-setuptools,
Build-Depends-Indep:
 python3-yaml,
 python3-pytest,
 python3-pytest-runner,
Standards-Version: 4.4.1
Vcs-Browser: https://salsa.debian.org/python-team/modules/python-box
Vcs-Git: https://salsa.debian.org/python-team/modules/python-box.git
Homepage: https://github.com/cdgriffith/Box
Rules-Requires-Root: no

Package: python3-box
Architecture: all
Depends:
 python3-yaml,
 ${misc:Depends},
 ${python3:Depends},
Description: Python dictionaries with advanced dot notation access
 Box is designed to be an easy drop in transparently replacements
 for dictionaries, thanks to Python's duck typing capabilities, which
 adds dot notation access. Any sub dictionaries or ones set after
 initiation will be automatically converted to a Box object.
 You can always run .to_dict() on it to return the object and all
 sub objects back into a regular dictionary.