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
858 B
TOML

[tool.poetry]
name = "busrt-worker"
version = "0.1.3"
description = "busrt-worker is a Python-based async busrt message handle framework"
authors = ["JimZhang <zzl22100048@gmail.com>"]
repository = "https://git.loom.run/Coder/amqp-worker"
readme = "README.md"
packages = [{include = "busrtworker"}]
keywords = ["busrt", "message", "rpc"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10"
msgpack = "^1.0.5"
loguru = "^0.7.0"
cramjam = "^2.6.2"
[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