/** * **cython** - Compiler for writing C extensions for the Python language * * @domain `cython.org` * @programs `cython` * @version `3.2.2` (28 versions available) * @versions From newest version to oldest. * * @install `launchpad install cython.org` * @homepage https://cython.org/ * @dependencies `python.org<3.12` * @buildDependencies `pip.pypa.io` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cythonorg * console.log(pkg.name) // "cython" * console.log(pkg.description) // "Compiler for writing C extensions for the Pytho..." * console.log(pkg.programs) // ["cython"] * console.log(pkg.versions[0]) // "3.2.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/cython-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cythonorgPackage: { /** * The display name of this package. */ name: 'cython'; /** * The canonical domain name for this package. */ domain: 'cython.org'; /** * Brief description of what this package does. */ description: 'Compiler for writing C extensions for the Python language'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/cython.org/package.yml'; homepageUrl: 'https://cython.org/'; githubUrl: 'https://github.com/cython/cython'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install cython.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +cython.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install cython.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['cython']; 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 ['pip.pypa.io']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.2.2', '3.2.1', '3.2.0', '3.1.7', '3.1.6', '3.1.5', '3.1.4', '3.1.3', '3.1.2', '3.1.1', '3.1.0', '3.0.12', '3.0.11', '3.0.10', '3.0.9', '3.0.8', '3.0.7', '3.0.6', '3.0.5', '3.0.4', '3.0.3', '3.0.2', '3.0.1', '3.0.0', '0.29.37.1', '0.29.37', '0.29.36', '0.29.35']; aliases: readonly [] }; export type CythonorgPackage = typeof cythonorgPackage