renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
15 lines • 831 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.supportedDatasources = exports.defaultConfig = exports.categories = exports.url = exports.displayName = exports.extractPackageFile = void 0;
const pypi_1 = require("../../datasource/pypi");
var extract_1 = require("./extract");
Object.defineProperty(exports, "extractPackageFile", { enumerable: true, get: function () { return extract_1.extractPackageFile; } });
exports.displayName = 'PEP 723';
exports.url = 'https://peps.python.org/pep-0723';
exports.categories = ['python'];
exports.defaultConfig = {
// Since any Python file can embed PEP 723 metadata, make the feature opt-in, to avoid parsing all Python files.
managerFilePatterns: [],
};
exports.supportedDatasources = [pypi_1.PypiDatasource.id];
//# sourceMappingURL=index.js.map