/** * **flit** - Simplified packaging of Python modules * * @domain `flit.pypa.io` * @programs `flit` * @version `3.12.0` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install flit.pypa.io` * @homepage https://flit.pypa.io/ * @dependencies `python.org>=3<3.12` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.flitpypaio * console.log(pkg.name) // "flit" * console.log(pkg.description) // "Simplified packaging of Python modules" * console.log(pkg.programs) // ["flit"] * console.log(pkg.versions[0]) // "3.12.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/flit-pypa-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const flitpypaioPackage: { /** * The display name of this package. */ name: 'flit'; /** * The canonical domain name for this package. */ domain: 'flit.pypa.io'; /** * Brief description of what this package does. */ description: 'Simplified packaging of Python modules'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/flit.pypa.io/package.yml'; homepageUrl: 'https://flit.pypa.io/'; githubUrl: 'https://github.com/pypa/flit'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install flit.pypa.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +flit.pypa.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install flit.pypa.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['flit']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['python.org>=3<3.12']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.12.0', '3.11.0', '3.10.1', '3.10.0', '3.9.0', '3.8.0']; aliases: readonly [] }; export type FlitpypaioPackage = typeof flitpypaioPackage