mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 15:36:25 +00:00
11 lines
329 B
TypeScript
11 lines
329 B
TypeScript
import { ProgrammingLanguage } from '../../constants';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
export { updateArtifacts } from './artifacts';
|
|
|
|
export const language = ProgrammingLanguage.Python;
|
|
export const supportsLockFileMaintenance = true;
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)pyproject\\.toml$'],
|
|
};
|