UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

81 lines 2.68 kB
/** * **f2py** - The fundamental package for scientific computing with Python. * * @domain `numpy.org` * @programs `f2py` * @version `2.3.2` (20 versions available) * @versions From newest version to oldest. * * @install `launchpad install f2py` * @name `f2py` * @dependencies `openblas.net^0.3`, `python.org^3.11` * @companions `gnu.org/gcc` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.f2py * // Or access via domain * const samePkg = pantry.numpyorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "f2py" * console.log(pkg.description) // "The fundamental package for scientific computin..." * console.log(pkg.programs) // ["f2py"] * console.log(pkg.versions[0]) // "2.3.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/numpy-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const f2pyPackage: { /** * The display name of this package. */ name: 'f2py'; /** * The canonical domain name for this package. */ domain: 'numpy.org'; /** * Brief description of what this package does. */ description: 'The fundamental package for scientific computing with Python.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/numpy.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install f2py'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['f2py']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['gnu.org/gcc']; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openblas.net^0.3', 'python.org^3.11']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.3.2', '2.3.1', '2.3.0', '2.2.6', '2.2.5', '2.2.4', '2.2.3', '2.2.2', '2.2.1', '2.2.0', '2.1.3', '2.1.2', '2.1.1', '2.1.0', '2.0.2', '2.0.1', '2.0.0', '1.26.4', '1.26.3', '1.26.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) f2py -- $SHELL -i'; launchpadInstallCommand: 'launchpad install f2py' }; export type F2pyPackage = typeof f2pyPackage