28 lines
488 B
TOML
28 lines
488 B
TOML
[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"
|