-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.65 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (51 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[project]
name = "queuebridge"
version = "0.1.2"
description = "Bidirectional Pydantic serialization for Celery, Dramatiq, and Arq"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"pydantic>=2.5",
"typing-extensions>=4.8",
]
[project.optional-dependencies]
celery = ["celery>=5.5", "kombu>=5.3"]
dramatiq = ["dramatiq>=1.14"]
arq = ["arq>=0.25", "msgpack>=1.0"]
all = ["queuebridge[celery,dramatiq,arq]"]
dev = ["pytest>=8", "pytest-asyncio>=0.23", "fakeredis>=2", "httpx>=0.27", "ruff>=0.4", "mypy>=1.8"]
docs = ["sphinx>=7", "furo>=2024", "sphinx-autodoc-typehints>=2.0"]
[project.urls]
Homepage = "https://github.com/false200/queuebridge"
Documentation = "https://queuebridge.readthedocs.io"
Issues = "https://github.com/false200/queuebridge/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/queuebridge"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
pythonpath = ["."]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.mypy]
python_version = "3.10"
strict = true
[[tool.mypy.overrides]]
module = ["kombu.*", "celery.*", "msgpack", "msgpack.*"]
ignore_missing_imports = true