celery-rs 0.6.3

Community-maintained Rust implementation of Celery (fork of rusty-celery)
Documentation
[project]
name = "celery-rs-python-examples"
version = "0.1.0"
requires-python = ">=3.10"
dependencies = [
    "celery>=5.3",
    "redis>=4.5",
]

[tool.black]
line-length = 100

include = '\.pyi?$'

exclude = '''
(
      __pycache__
    | \bbuild\b
    | \.git
    | \.mypy_cache
    | \.pytest_cache
    | \.vscode
    | \.venv
    | \bdist\b
    | \bdoc\b
)
'''