build(tools): migrate trezor-pylint-plugin to uv

This commit is contained in:
matejcik
2025-09-03 13:29:32 +02:00
committed by matejcik
parent 51c833d8d3
commit 25c30024e2
2 changed files with 12 additions and 11 deletions

View File

@@ -1,2 +1,3 @@
*.egg-info
/build
uv.lock

View File

@@ -1,15 +1,15 @@
[tool.poetry]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "trezor-pylint-plugin"
version = "0.1.0"
description = ""
authors = ["matejcik <ja@matejcik.cz>"]
authors = [{ name = "matejcik", email = "ja@matejcik.cz" }]
requires-python = ">=3.9,<4"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
pylint = "*"
astroid = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
dependencies = [
"pylint",
"astroid",
]