38 lines
1.0 KiB
TOML
38 lines
1.0 KiB
TOML
[tool.poetry]
|
|
name = "bthlabs-jsonrpc-core"
|
|
version = "1.1.0"
|
|
description = "BTHLabs JSONRPC - Core"
|
|
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/core/"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
python-jose = {version = ">=3.3.0,<4.0", optional = true, extras = ["cryptography"]}
|
|
pytz = {version = ">=2023.3.post1", optional = true}
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
flake8 = "6.1.0"
|
|
flake8-commas = "2.1.0"
|
|
freezegun = "1.4.0"
|
|
mypy = "1.8.0"
|
|
pytest = "7.4.3"
|
|
python-jose = "3.3.0"
|
|
pytz = "2023.3.post1"
|
|
sphinx = "7.2.6"
|
|
sphinx-rtd-theme = "2.0.0"
|
|
|
|
[tool.poetry.extras]
|
|
jwt = ["python-jose", "pytz"]
|
|
|
|
[tool.poetry.plugins.pytest11]
|
|
bthlabs_jsonrpc_core = "bthlabs_jsonrpc_core.pytest_plugin"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|