-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (75 loc) · 2.02 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (75 loc) · 2.02 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[project]
name = "taskiq-service-bus"
version = "0.3.0"
description = "Azure servicebus broker for taskiq"
authors = [
{name = "Hamilton Kibbe", email = "ham@hamiltonkib.be"}
]
maintainers = [
{name = "Hamilton Kibbe", email = "ham@hamiltonkib.be"}
]
readme = "README.md"
license = "MIT"
license-file = "LICENSE"
classifiers = [
"Typing :: Typed",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: System :: Networking",
"Development Status :: 3 - Alpha",
]
homepage = "https://github.com/hamiltonkibbe/taskiq-service-bus"
repository = "https://github.com/hamiltonkibbe/taskiq-service-bus"
keywords = ["taskiq", "azure", "service bus", "servicebus"]
requires-python = ">=3.10,<4"
dependencies = [
"azure-servicebus>=7.14.3",
"taskiq>=0.12.1,<1",
]
[dependency-groups]
dev = [
"ruff>=0.15.0",
]
[build-system]
requires = ["uv_build>=0.10.0,<0.11.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "taskiq_service_bus"
module-root = ""
[tool.ruff]
target-version = "py310"
lint.select = [
"ASYNC", # flake8-async
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"C90", # mccabe
"D", # pydocstyle
"E", # pycodestyle
"ERA", # eradicate
"F", # Pyflakes
"I", # isort
"N", # pep8-naming
"PIE", # flake8-pie
"PL", # Pylint
"PTH", # flake8-use-pathlib
"Q", # flake8-quotes
"RSE", # flake8-raise
"RET", # flake8-return
"RUF", # ruff-specific rules
"S", # Bandit
"SIM", # flake8-simplify
"SLF", # flake8-self
"T20", # flake8-print
"UP", # pyupgrade
"W", # pycodestyle
]
[tool.ruff.lint.pydocstyle]
# Use Google-style docstrings.
convention = "google"