Migrate to uv

This commit is contained in:
2026-03-02 14:38:42 +01:00
parent a5159bbf60
commit 9ee4f70428
8 changed files with 1150 additions and 249 deletions

27
pyproject.toml Normal file
View File

@@ -0,0 +1,27 @@
[project]
name = "wallabag_api"
version = "1.2.3"
description = "Wallabag API"
readme = "README.md"
license = {text = "BSD"}
requires-python = ">=3.10"
authors = [
{name = "FoxMaSk", email = "foxmaskhome@gmail.com"}
]
dependencies = [
"aiohttp",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = ["wallabag_api"]
asyncio_mode = "auto"