/** * **packaging** - Core utilities for Python packages * * @domain `pypa.io/packaging` * @version `25.0.0` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install pypa.io/packaging` * @homepage https://packaging.pypa.io/ * @dependencies `python.org>=3.11` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.pypaiopackaging * console.log(pkg.name) // "packaging" * console.log(pkg.description) // "Core utilities for Python packages" * console.log(pkg.versions[0]) // "25.0.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/pypa-io/packaging.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pypaiopackagingPackage: { /** * The display name of this package. */ name: 'packaging'; /** * The canonical domain name for this package. */ domain: 'pypa.io/packaging'; /** * Brief description of what this package does. */ description: 'Core utilities for Python packages'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pypa.io/packaging/package.yml'; homepageUrl: 'https://packaging.pypa.io/'; githubUrl: 'https://github.com/pypa/packaging'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install pypa.io/packaging'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +pypa.io/packaging -- $SHELL -i'; launchpadInstallCommand: 'launchpad install pypa.io/packaging'; 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 ['25.0.0', '24.2.0', '24.1.0', '24.0.0', '23.2.0']; aliases: readonly [] }; export type PypaiopackagingPackage = typeof pypaiopackagingPackage