0
0
Fork 0
mirror of https://github.com/renovatebot/renovate.git synced 2025-01-11 13:48:55 +00:00
renovatebot_renovate/lib/modules/manager/pep723/index.ts
Risu 397ab49ef3
docs(managers): add missing url and displayName (#32621)
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
2024-12-01 08:47:27 +00:00

14 lines
525 B
TypeScript

import type { Category } from '../../../constants';
import { PypiDatasource } from '../../datasource/pypi';
export { extractPackageFile } from './extract';
export const displayName = 'PEP 723';
export const url = 'https://peps.python.org/pep-0723';
export const categories: Category[] = ['python'];
export const defaultConfig = {
// Since any Python file can embed PEP 723 metadata, make the feature opt-in, to avoid parsing all Python files.
fileMatch: [],
};
export const supportedDatasources = [PypiDatasource.id];