33 lines
933 B
TOML
33 lines
933 B
TOML
[tool.poetry]
|
|
name = "bthlabs-jsonrpc-django"
|
|
version = "1.1.0"
|
|
description = "BTHLabs JSONRPC - Django 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"
|
|
django = ">=3.2,<5.0"
|
|
bthlabs-jsonrpc-core = "1.1.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
bthlabs-jsonrpc-core = { path = "../bthlabs-jsonrpc-core", develop = true }
|
|
django = "3.2.23"
|
|
factory-boy = "3.3.0"
|
|
flake8 = "6.1.0"
|
|
flake8-commas = "2.1.0"
|
|
mypy = "1.8.0"
|
|
pytest = "7.4.3"
|
|
pytest-django = "4.7.0"
|
|
sphinx = "7.2.6"
|
|
sphinx-rtd-theme = "2.0.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|