ts-pkgx
Version:
A library & CLI for managing packages
59 lines • 2.06 kB
TypeScript
/**
* **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 -- $SHELL -i`
* @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: '';
githubUrl: 'https://github.com/pypa/distlib';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +pypa.io/distlib -- $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 ['0.3.6'];
aliases: readonly []
};
export type PypaiodistlibPackage = typeof pypaiodistlibPackage