ts-pkgx
Version:
A library & CLI for managing packages
59 lines • 1.86 kB
TypeScript
/**
* **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 -- $SHELL -i`
* @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: '';
githubUrl: 'https://github.com/pypa/packaging';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +pypa.io/packaging -- $SHELL -i';
programs: readonly [];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['python.org>=3.11'];
/**
* 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