Update dependencies and build system configuration

This commit is contained in:
2025-11-03 11:22:33 -06:00
parent c0f60d52db
commit 3809ac8274
3 changed files with 677 additions and 193 deletions

View File

@@ -14,8 +14,11 @@ dependencies = [
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["ren_browser"]
[project.scripts]
ren-browser = "ren_browser.app:run"
@@ -23,12 +26,14 @@ ren-browser-web = "ren_browser.app:web"
ren-browser-android = "ren_browser.app:android"
ren-browser-ios = "ren_browser.app:ios"
[tool.poetry.group.dev.dependencies]
ruff = "^0.11.11"
pytest = "^8.4.2"
pytest-cov = "^7.0.0"
pytest-mock = "^3.15.1"
pytest-asyncio = "^1.2.0"
[dependency-groups]
dev = [
"ruff>=0.11.11,<1.0.0",
"pytest>=8.4.2,<9.0.0",
"pytest-cov>=7.0.0,<8.0.0",
"pytest-mock>=3.15.1,<4.0.0",
"pytest-asyncio>=1.2.0,<2.0.0"
]
[tool.flet.flutter.pubspec.dependency_overrides]
webview_flutter_android = "4.10.1"