mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-27 13:20:13 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
17 lines
578 B
TypeScript
17 lines
578 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { PypiDatasource } from '../../datasource/pypi';
|
|
export { bumpPackageVersion } from './update';
|
|
export { extractPackageFile } from './extract';
|
|
export { updateArtifacts } from './artifacts';
|
|
|
|
export const supportsLockFileMaintenance = true;
|
|
|
|
export const displayName = 'PEP 621';
|
|
export const url = 'https://peps.python.org/pep-0621';
|
|
export const categories: Category[] = ['python'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)pyproject\\.toml$'],
|
|
};
|
|
|
|
export const supportedDatasources = [PypiDatasource.id];
|