/** * **distlib** - A low-level library which implements some Python packaging standards (PEPs) and which could be used by third-party packaging tools to achieve interoperability. * * @domain `pypa.io/distlib` * @version `0.3.6` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install pypa.io/distlib` * @homepage http://distlib.readthedocs.io/ * @dependencies `python.org>=3.11` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.pypaiodistlib * console.log(pkg.name) // "distlib" * console.log(pkg.description) // "A low-level library which implements some Pytho..." * console.log(pkg.versions[0]) // "0.3.6" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/pypa-io/distlib.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pypaiodistlibPackage: { /** * The display name of this package. */ name: 'distlib'; /** * The canonical domain name for this package. */ domain: 'pypa.io/distlib'; /** * Brief description of what this package does. */ description: 'A low-level library which implements some Python packaging standards (PEPs) and which could be used by third-party packaging tools to achieve interoperability.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pypa.io/distlib/package.yml'; homepageUrl: 'http://distlib.readthedocs.io/'; githubUrl: 'https://github.com/pypa/distlib'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install pypa.io/distlib'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +pypa.io/distlib -- $SHELL -i'; launchpadInstallCommand: 'launchpad install pypa.io/distlib'; programs: readonly []; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['python.org>=3.11']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.3.6']; aliases: readonly [] }; export type PypaiodistlibPackage = typeof pypaiodistlibPackage