/** * **six** - Python 2 and 3 compatibility library * * @domain `github.com/benjaminp/six` * @version `1.17.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/benjaminp/six` * @homepage https://six.readthedocs.io/ * @dependencies `python.org~3.11` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcombenjaminpsix * console.log(pkg.name) // "six" * console.log(pkg.description) // "Python 2 and 3 compatibility library" * console.log(pkg.versions[0]) // "1.17.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/benjaminp/six.md * @see https://ts-pkgx.netlify.app/usage */ export declare const sixPackage: { /** * The display name of this package. */ name: 'six'; /** * The canonical domain name for this package. */ domain: 'github.com/benjaminp/six'; /** * Brief description of what this package does. */ description: 'Python 2 and 3 compatibility library'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/benjaminp/six/package.yml'; homepageUrl: 'https://six.readthedocs.io/'; githubUrl: 'https://github.com/benjaminp/six'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/benjaminp/six'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/benjaminp/six -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/benjaminp/six'; 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 ['1.17.0', '1.16.0']; aliases: readonly [] }; export type SixPackage = typeof sixPackage