renovate/lib/manager/pip_requirements/index.ts
2020-06-26 10:59:00 +02:00

11 lines
334 B
TypeScript

import { LANGUAGE_PYTHON } from '../../constants/languages';
export { updateArtifacts } from './artifacts';
export { extractPackageFile } from './extract';
export { getRangeStrategy } from './range';
export const language = LANGUAGE_PYTHON;
export const defaultConfig = {
fileMatch: ['(^|/)([\\w-]*)requirements.(txt|pip)$'],
};