semantic-release-pypi
Version:
semantic-release plugin to publish a python package to PyPI
15 lines (14 loc) • 348 B
TypeScript
export interface PluginConfig {
srcDir?: string;
distDir?: string;
repoUrl?: string;
repoUsername?: string;
repoToken?: string;
pypiPublish?: boolean;
gpgSign?: boolean;
gpgIdentity?: string;
envDir?: string | false;
installDeps?: boolean;
versionCmd?: string | string[];
skipIfConflict?: boolean;
}