semantic-release-pypi
Version:
semantic-release plugin to publish a python package to PyPI
9 lines (8 loc) • 547 B
TypeScript
import { Options, ResultPromise } from 'execa';
import { Context } from './@types/semantic-release/index.js';
export declare const __dirname: string;
declare function normalizeVersion(version: string, options?: Options): Promise<string>;
declare function setopt(setupPy: string, command: string, option: string, value: string): ResultPromise;
declare function pipe(context: Context): Options;
declare function spawn(file: string | URL, args?: readonly string[], options?: Options): ResultPromise;
export { normalizeVersion, pipe, setopt, spawn };