/** * **attrs** - Python Classes Without Boilerplate * * @domain `attrs.org` * @version `25.4.0` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install attrs.org` * @homepage https://www.attrs.org/ * @dependencies `python.org~3.11` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.attrsorg * console.log(pkg.name) // "attrs" * console.log(pkg.description) // "Python Classes Without Boilerplate" * console.log(pkg.versions[0]) // "25.4.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/attrs-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const attrsorgPackage: { /** * The display name of this package. */ name: 'attrs'; /** * The canonical domain name for this package. */ domain: 'attrs.org'; /** * Brief description of what this package does. */ description: 'Python Classes Without Boilerplate'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/attrs.org/package.yml'; homepageUrl: 'https://www.attrs.org/'; githubUrl: 'https://github.com/python-attrs/attrs'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install attrs.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +attrs.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install attrs.org'; programs: readonly []; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['python.org~3.11']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['25.4.0', '25.3.0', '25.2.0', '25.1.0', '24.3.0', '24.2.0', '24.1.0', '23.2.0']; aliases: readonly [] }; export type AttrsorgPackage = typeof attrsorgPackage