File: control

package info (click to toggle)
python-virtualenv 20.17.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,580 kB
  • sloc: python: 9,952; sh: 149; ansic: 61; csh: 35; makefile: 10
file content (71 lines) | stat: -rw-r--r-- 3,018 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
Source: python-virtualenv
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Carl Chenet <chaica@ohmytux.com>,
           Stefano Rivera <stefanor@debian.org>,
           Scott Kitterman <scott@kitterman.com>,
Homepage: https://virtualenv.pypa.io/
Vcs-Git: https://salsa.debian.org/python-team/packages/python-virtualenv.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-virtualenv
Build-Depends: debhelper-compat (= 13),
               dh-python,
               pybuild-plugin-pyproject,
               python3-all,
               unzip <!nocheck>,
               zip <!nocheck>,
Build-Depends-Indep: python3-distlib (>= 0.3.1) <!nocheck>,
                     python3-distutils <!nocheck>,
                     python3-filelock <!nocheck>,
                     python3-importlib-metadata (>= 3.6) <!nocheck>,
                     python3-pip-whl <!nocheck>,
                     python3-platformdirs <!nocheck>,
                     python3-setuptools,
                     python3-setuptools-scm,
                     python3-setuptools-whl <!nocheck>,
                     python3-wheel-whl <!nocheck>,
Standards-Version: 4.6.1
Rules-Requires-Root: no

Package: python3-virtualenv
Architecture: all
Depends: python3-pip-whl,
         python3-setuptools-whl,
         python3-setuptools-whl (>= 60) | python3-distutils,
         python3-wheel-whl,
         ${misc:Depends},
         ${python3:Depends},
Recommends: build-essential, ca-certificates, python3-dev, python3-distutils
Breaks: virtualenv (<< 20.0.10)
Replaces: virtualenv (<< 20.0.10)
Description: Python virtual environment creator
 virtualenv is a tool to create isolated Python environments, each invokable
 with its own Python executable.  Each instance can have different sets of
 modules, installable via pip.  Virtual Python instances can also be created
 without root access.
 .
 Since Python 3.3, a subset of it has been integrated into the standard library
 under the venv module (python3-venv in Debian).  The venv module does not
 offer all features of this library, to name just a few more prominent ones:
 .
  * is slower (by not having the app-data seed method),
  * is not as extendable,
  * cannot create virtual environments for arbitrarily installed Python
    versions (and automatically discover these),
  * does not have as rich programmatic API (describe virtual environments
    without creating them).
 .
 This is the Python 3 version of the library.  It includes the command line
 script.

Package: virtualenv
Architecture: all
Depends: python3-virtualenv
Section: oldlibs
Description: Python virtual environment creator (Dependency package)
 The virtualenv utility creates virtual Python instances, each invokable with
 its own Python executable.  Each instance can have different sets of modules,
 installable via pip.  Virtual Python instances can also be created without
 root access.
 .
 This is a dependency package and may be safely removed.