/** * **hatch** - Modern, extensible Python project management * * @domain `hatch.pypa.io` * @programs `hatch` * @version `1.16.2` (24 versions available) * @versions From newest version to oldest. * * @install `launchpad install hatch.pypa.io` * @homepage https://hatch.pypa.io/latest/ * @dependencies `python.org>=3<3.12` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.hatchpypaio * console.log(pkg.name) // "hatch" * console.log(pkg.description) // "Modern, extensible Python project management" * console.log(pkg.programs) // ["hatch"] * console.log(pkg.versions[0]) // "1.16.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/hatch-pypa-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const hatchpypaioPackage: { /** * The display name of this package. */ name: 'hatch'; /** * The canonical domain name for this package. */ domain: 'hatch.pypa.io'; /** * Brief description of what this package does. */ description: 'Modern, extensible Python project management'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/hatch.pypa.io/package.yml'; homepageUrl: 'https://hatch.pypa.io/latest/'; githubUrl: 'https://github.com/pypa/hatch'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install hatch.pypa.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +hatch.pypa.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install hatch.pypa.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['hatch']; 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 ['1.16.2', '1.16.1', '1.16.0', '1.15.1', '1.15.0', '1.14.2', '1.14.1', '1.14.0', '1.13.0', '1.12.0', '1.11.1', '1.11.0', '1.10.0', '1.9.7', '1.9.6', '1.9.5', '1.9.4', '1.9.3', '1.9.2', '1.9.1', '1.9.0', '1.8.1', '1.8.0', '1.7.0']; aliases: readonly [] }; export type HatchpypaioPackage = typeof hatchpypaioPackage