UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

61 lines 1.92 kB
/** * **networkx.org** - Network Analysis in Python * * @domain `networkx.org` * @version `3.5.0` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install networkx.org` * @dependencies `python.org>=3.11` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.networkxorg * console.log(pkg.name) // "networkx.org" * console.log(pkg.description) // "Network Analysis in Python" * console.log(pkg.versions[0]) // "3.5.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/networkx-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const networkxorgPackage: { /** * The display name of this package. */ name: 'networkx.org'; /** * The canonical domain name for this package. */ domain: 'networkx.org'; /** * Brief description of what this package does. */ description: 'Network Analysis in Python'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/networkx.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/networkx/networkx'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install networkx.org'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['python.org>=3.11']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.5.0', '3.4.2', '3.4.1', '3.4.0', '3.3.0', '3.2.1']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +networkx.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install networkx.org' }; export type NetworkxorgPackage = typeof networkxorgPackage