/** * **virtualenv** - Tool for creating isolated virtual python environments * * @domain `virtualenv.pypa.io` * @programs `virtualenv` * @version `20.35.4` (49 versions available) * @versions From newest version to oldest. * * @install `launchpad install virtualenv.pypa.io` * @homepage https://virtualenv.pypa.io/ * @dependencies `pkgx.sh^1`, `libexpat.github.io^2`, `openssl.org^1.1` * @buildDependencies `python.org@>=3.7<3.12` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.virtualenvpypaio * console.log(pkg.name) // "virtualenv" * console.log(pkg.description) // "Tool for creating isolated virtual python envir..." * console.log(pkg.programs) // ["virtualenv"] * console.log(pkg.versions[0]) // "20.35.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/virtualenv-pypa-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const virtualenvpypaioPackage: { /** * The display name of this package. */ name: 'virtualenv'; /** * The canonical domain name for this package. */ domain: 'virtualenv.pypa.io'; /** * Brief description of what this package does. */ description: 'Tool for creating isolated virtual python environments'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/virtualenv.pypa.io/package.yml'; homepageUrl: 'https://virtualenv.pypa.io/'; githubUrl: 'https://github.com/pypa/virtualenv'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install virtualenv.pypa.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +virtualenv.pypa.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install virtualenv.pypa.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['virtualenv']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['pkgx.sh^1', 'libexpat.github.io^2', 'openssl.org^1.1']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['python.org@>=3.7<3.12']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['20.35.4', '20.35.3', '20.35.2', '20.35.1', '20.35.0', '20.34.0', '20.33.1', '20.33.0', '20.32.0', '20.31.2', '20.31.1', '20.31.0', '20.30.0', '20.29.3', '20.29.2', '20.29.1', '20.29.0', '20.28.1', '20.28.0', '20.27.2', '20.27.1', '20.27.0', '20.26.6', '20.26.5', '20.26.4', '20.26.3', '20.26.2', '20.26.1', '20.26.0', '20.25.3', '20.25.2', '20.25.1', '20.25.0', '20.24.7', '20.24.6', '20.24.5', '20.24.4', '20.24.3', '20.24.2', '20.24.1', '20.24.0', '20.23.1', '20.23.0', '20.22.0', '20.21.1', '20.21.0', '20.20.0', '20.19.0', '20.18.0']; aliases: readonly [] }; export type VirtualenvpypaioPackage = typeof virtualenvpypaioPackage