You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
746 B
TOML

1 year ago
[tool.poetry]
name = "busrt-worker"
version = "0.1.0"
description = "busrt-worker is a Python-based async busrt message handle framework"
authors = ["JimZhang <zzl22100048@gmail.com>"]
readme = "README.md"
packages = [{include = "busrt_worker"}]
[tool.poetry.dependencies]
python = "^3.10"
msgpack = "^1.0.5"
zstd = "^1.5.5.1"
loguru = "^0.7.0"
[tool.poetry.group.dev.dependencies]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "baidu"
url = "https://mirror.baidu.com/pypi/simple"
default = true
[tool.ruff]
exclude = [
"tests",
]
line-length = 120
select = [
"E",
"F",
"W",
"I"
]
target-version = "py310"
[tool.ruff.isort]
combine-as-imports = true