ts-pkgx
Version:
A library & CLI for managing packages
59 lines • 1.85 kB
TypeScript
/**
* **sympy.org** - A computer algebra system written in pure Python
*
* @domain `sympy.org`
* @version `1.14.0` (7 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +sympy.org -- $SHELL -i`
* @dependencies `python.org>=3.11`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.sympyorg
* console.log(pkg.name) // "sympy.org"
* console.log(pkg.description) // "A computer algebra system written in pure Python"
* console.log(pkg.versions[0]) // "1.14.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/sympy-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const sympyorgPackage: {
/**
* The display name of this package.
*/
name: 'sympy.org';
/**
* The canonical domain name for this package.
*/
domain: 'sympy.org';
/**
* Brief description of what this package does.
*/
description: 'A computer algebra system written in pure Python';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sympy.org/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/sympy/sympy';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +sympy.org -- $SHELL -i';
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 ['1.14.0', '1.13.3', '1.13.2', '1.13.1', '1.13.0', '1.12.1', '1.12.0'];
aliases: readonly []
};
export type SympyorgPackage = typeof sympyorgPackage