1[tool.poetry] 2name = "external_updater" 3version = "0.1.0" 4description = "external_updater is a tool to automatically update libraries in external/." 5authors = ["The Android Open Source Project"] 6readme = "README.md" 7 8[tool.poetry.dependencies] 9python = "^3.11" 10 11[tool.poetry.group.dev.dependencies] 12mypy = "^1.8.0" 13pylint = "^3.0.3" 14pytest = "^8.0.0" 15 16[tool.pylint."MESSAGES CONTROL"] 17disable = [ 18 "duplicate-code", 19 "fixme", 20 "line-too-long", 21 "missing-docstring", 22 "refactoring", 23 "wrong-import-order", 24] 25 26[build-system] 27requires = ["poetry-core"] 28build-backend = "poetry.core.masonry.api" 29