/** * **pluggy** - A minimalist production ready plugin system * * @domain `pytest.org/pluggy` * @version `1.6.0` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install pytest.org/pluggy` * @homepage https://pluggy.readthedocs.io/en/latest/ * @dependencies `python.org^3.12` * @buildDependencies `pypa.io/setuptools` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.pytestorgpluggy * console.log(pkg.name) // "pluggy" * console.log(pkg.description) // "A minimalist production ready plugin system" * console.log(pkg.versions[0]) // "1.6.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/pytest-org/pluggy.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pytestorgpluggyPackage: { /** * The display name of this package. */ name: 'pluggy'; /** * The canonical domain name for this package. */ domain: 'pytest.org/pluggy'; /** * Brief description of what this package does. */ description: 'A minimalist production ready plugin system'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pytest.org/pluggy/package.yml'; homepageUrl: 'https://pluggy.readthedocs.io/en/latest/'; githubUrl: 'https://github.com/pytest-dev/pluggy'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install pytest.org/pluggy'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +pytest.org/pluggy -- $SHELL -i'; launchpadInstallCommand: 'launchpad install pytest.org/pluggy'; programs: readonly []; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['python.org^3.12']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['pypa.io/setuptools']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.6.0', '1.5.0', '1.4.0']; aliases: readonly [] }; export type PytestorgpluggyPackage = typeof pytestorgpluggyPackage