renovate/lib/modules/manager/pep621/index.ts

16 lines
485 B
TypeScript

import type { Category } from '../../../constants';
import { PypiDatasource } from '../../datasource/pypi';
export { bumpPackageVersion } from './update';
export { extractPackageFile } from './extract';
export { updateArtifacts } from './artifacts';
export const supportedDatasources = [PypiDatasource.id];
export const supportsLockFileMaintenance = true;
export const categories: Category[] = ['python'];
export const defaultConfig = {
fileMatch: ['(^|/)pyproject\\.toml$'],
};