mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
ab778ebf1d
Co-authored-by: Michael Kriese <michael.kriese@visualon.de> Co-authored-by: Jamie Magee <jamie.magee@gmail.com>
14 lines
443 B
TypeScript
14 lines
443 B
TypeScript
import { ProgrammingLanguage } from '../../constants';
|
|
import { PypiDatasource } from '../../datasource/pypi';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
export { updateArtifacts } from './artifacts';
|
|
|
|
export const supportedDatasources = [PypiDatasource.id];
|
|
|
|
export const language = ProgrammingLanguage.Python;
|
|
export const supportsLockFileMaintenance = true;
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)pyproject\\.toml$'],
|
|
};
|