File: control

package info (click to toggle)
python-expandvars 1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 360 kB
  • sloc: python: 656; makefile: 3
file content (32 lines) | stat: -rw-r--r-- 1,148 bytes parent folder | download | duplicates (2)
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
Source: python-expandvars
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Colin Watson <cjwatson@debian.org>
Build-Depends:
 debhelper-compat (= 13),
 dh-sequence-python3,
 pybuild-plugin-pyproject,
 python3-all,
 python3-hatchling,
 python3-pytest <!nocheck>,
 python3-pytest-cov <!nocheck>,
Standards-Version: 4.7.0
Rules-Requires-Root: no
Testsuite: autopkgtest-pkg-pybuild
Homepage: https://github.com/sayanarijit/expandvars
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-expandvars
Vcs-Git: https://salsa.debian.org/python-team/packages/python-expandvars.git

Package: python3-expandvars
Architecture: all
Depends:
 ${misc:Depends},
 ${python3:Depends},
Description: bash-style environment variable expansion in Python
 This module is inspired by GNU bash's variable expansion features. It can
 be used as an alternative to Python's os.path.expandvars function.
 .
 A good use case is reading config files with the flexibility of reading
 values from environment variables using advanced features like returning a
 default value if some variable is not defined.