mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
19 lines
613 B
TypeScript
19 lines
613 B
TypeScript
import type { ProgrammingLanguage } from '../../../constants';
|
|
import { GithubTagsDatasource } from '../../datasource/github-tags';
|
|
import { PypiDatasource } from '../../datasource/pypi';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
export { updateArtifacts } from './artifacts';
|
|
export { updateLockedDependency } from './update-locked';
|
|
|
|
export const supportedDatasources = [
|
|
PypiDatasource.id,
|
|
GithubTagsDatasource.id,
|
|
];
|
|
|
|
export const language: ProgrammingLanguage = 'python';
|
|
export const supportsLockFileMaintenance = true;
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)pyproject\\.toml$'],
|
|
};
|