mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 17:16:25 +00:00
d5d9687ffe
Co-authored-by: Rhys Arkins <rhys@arkins.net>
12 lines
341 B
TypeScript
12 lines
341 B
TypeScript
import { LANGUAGE_PYTHON } from '../../constants/languages';
|
|
import { id as versioning } from '../../versioning/pep440';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
export { getRangeStrategy } from './range';
|
|
|
|
export const language = LANGUAGE_PYTHON;
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)setup\\.cfg$'],
|
|
versioning,
|
|
};
|