mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
11 lines
334 B
TypeScript
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)$'],
|
|
};
|