mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 21:48:32 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
18 lines
559 B
TypeScript
18 lines
559 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { PypiDatasource } from '../../datasource/pypi';
|
|
import { id as versioning } from '../../versioning/pep440';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const displayName = 'Setuptools (setup.cfg)';
|
|
export const url =
|
|
'https://setuptools.pypa.io/en/latest/userguide/declarative_config.html';
|
|
export const categories: Category[] = ['python'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)setup\\.cfg$'],
|
|
versioning,
|
|
};
|
|
|
|
export const supportedDatasources = [PypiDatasource.id];
|