34 lines
972 B
TOML
34 lines
972 B
TOML
[tool.poetry]
|
|
name = "bthlabs-jsonrpc-aiohttp"
|
|
version = "1.1.0b1"
|
|
description = "BTHLabs JSONRPC - aiohttp integration"
|
|
authors = ["Tomek Wójcik <contact@bthlabs.pl>"]
|
|
maintainers = ["BTHLabs <contact@bthlabs.pl>"]
|
|
license = "MIT License"
|
|
readme = "README.rst"
|
|
homepage = "https://projects.bthlabs.pl/bthlabs-jsonrpc/"
|
|
repository = "https://git.bthlabs.pl/tomekwojcik/bthlabs-jsonrpc/"
|
|
documentation = "https://projects.bthlabs.pl/bthlabs-jsonrpc/aiohttp/"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
aiohttp = ">=3.6,<4.0"
|
|
bthlabs-jsonrpc-core = "1.1.0b1"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
aiohttp = "3.9.1"
|
|
bthlabs-jsonrpc-core = { path = "../bthlabs-jsonrpc-core", develop = true }
|
|
aiohttp-devtools = "1.1.2"
|
|
flake8 = "6.1.0"
|
|
flake8-commas = "2.1.0"
|
|
mypy = "1.8.0"
|
|
pytest = "7.4.3"
|
|
pytest-aiohttp = "1.0.5"
|
|
pytest-asyncio = "0.23.3"
|
|
sphinx = "7.2.6"
|
|
sphinx-rtd-theme = "2.0.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|